* {
    margin: 0;
    padding: 0;
}

.background {
    background-color: #2f2f2f;
    width: 100%;
    height: 720px;
    position: relative;
}

.login-bg {
    position: absolute;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.login-box {
    min-width: 300px;
    position: absolute;
    left: 50%;
    top: 30%;
    margin: 0;
    padding: 40px 25px;
    padding-bottom: 25px;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.2);
}

.login-box .img-box {
    opacity: 1;
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}

.login-box .img-box img {
    opacity: 1;
    margin: auto;
}

.login-box .title {
    text-align: center;
    font-family: gothic, sans-serif;
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #ffff;
    font-weight: normal;
    letter-spacing: 5px;
}

.login-box form {
    margin: 0;
    padding: 0;
}

.login-box form input {
    width: 80%;
    padding: 5px;
    margin: 10px;
    margin-left: 7%;
    margin-right: 7%;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3) !important;
    border: none;
    border-left: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.login-box form input:focus {
    outline-color: #eee;
}

.login-box form input::placeholder {
    color: #cfcdcf;
    font-family: calibri, sans-serif;
}

.login-box .btn-box {
    width: 100%;
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
}

.login-box form button {
    margin: auto;
    width: 70%;
    height: 40px;
    background-color: #6a8de4;
    border: none;
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    font-family: 1.1em;
}

.login-box form button:hover {
    cursor: pointer;
    background-color: #5479d5;
}

.login-box hr {
    height: 0.5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin-bottom: 10px;
}

.login-box .link1 {
    width: 100%;
    margin-bottom: 60px;
}

.login-box .register {
    float: left;
    color: #cfcdcf;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 0.8em;
}

.login-box .forgot-password {
    float: right;
    color: #cfcdcf;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 0.8em;
}

.login-box .need-help {
    color: #cfcdcf;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 0.8em;
}

.login-box a:hover {
    color: white;
}