body {
    margin: 0;
    padding: 0;
    background: url('bg.jpg');
    background-position: center;
    background-size: cover;
    font-family: sans-serif;
}

.login-box {
    width: 420px;
    height: 520px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 70px 30px;
}

.h1 {
    margin: 0;
    padding: 0 0 20px;
    font-style: oblique;
    font-size: 30px;
}

.login-box label {
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.login-box input {
    width: 100%;
    margin-bottom: 20px;
}

.login-box input[type="text"],
input[type="password"] {
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    outline: none;
    height: 40px;
    color: white;
    font-size: 20px;
}

.login-box input[type="submit"] {
    border: none;
    outline: none;
    height: 40px;
    background: blueviolet;
    font-size: 22px;
    color: cornsilk;
    border-radius: 2;
}

.login-box input[type="submit"]:hover {
    cursor: pointer;
    background: darkmagenta;
    color: darkturquoise;
}

.login-box a {
    text-decoration: none;
    font-size: 16px;
    color: floralwhite;
}

.login-box a:hover {
    color: red;
}