#login-form {
    background: var(--global-bgcolor-main);
    background-color: rgba(0, 0, 0, .3);
    color: white;
    border-radius: 0;
    width: 350px;
    padding: 50px;
    outline: 1px solid rgb(99, 108, 111);
    outline-offset: 0;
    -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
    transition: outline-offset .15s ease-in-out, background-color .15s linear;
}

#login-form label {
    width: 100%;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 2px;
    text-align: left;
    display: inline-block;
}

#login-form input[type=text], #login-form input[type=password] {
    width: 100%;
    border: 1px solid #92b0b3;
    background-color: var(--global-bgcolor-main);
    padding: 5px;
    box-sizing: border-box;
}

#login-form input[type=text]:focus, #login-form input[type=password]:focus {
    background-color: var(var(--global-bgcolor-main-light)-light);
    outline: none;
}

#login-form input[type=submit],
#login-form div.button.registrar {
    height: 40px;
    width: 100%;
    box-sizing: border-box;
    border: none;
    background-color: #5b7173;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    margin-bottom: 5px;
    color: var(--global-bgcolor-main);
}

#login-form input[type=submit]:hover,
#login-form div.button.registrar:hover {
    background-color: rgb(37, 143, 44);
    cursor: pointer;
    color: white;
}

#login-form input.transparent {
    background-color: transparent;
}

.password-reset-container {
    width: 100%;
    text-align: right;
}

.password-reset {
    display: inline-block;
}

.password-reset a {
    font-size: 10px;
    font-weight: normal;
    text-transform: uppercase;
}