body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: url("images/bg2.jpg") no-repeat;
    background-size: cover;
}
.login-box {
    width: 280px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
}
.login-box h1 {
    float: left;
    font-size: 40px;
    border-bottom: 6px solid #ff96d2;
    margin-bottom: 50px;
    padding: 13px 0;
}
.textbox {
    width: 100%;
    overflow: hidden;
    font-size: 20px;
    padding: 8px 0;
    margin: 8px 0;
    border-bottom: 1px solid #ff96d2;
}
.textbox input {
    border: none;
    outline: none;
    background: none;
    color: white;
    font-size: 18px;
    width: 80%;
    float: left;
    margin: 0 10px;
}
.textbox input::placeholder{
    color: white;
}
.btn {
    width: 100%;
    background: none;
    border: 2px solid #ff96d2;
    color: white;
    padding: 5px;
    font-size: 18px;
    cursor: pointer;
    margin: 12px 0;
}
.btn:hover {
    background-color: #ff96d2;
    color: white;
}