/*
 * Document
 */
html, body {
    width: 100%;
    height: 100%;
    background: var(--body);
    color: var(--text);
}

/*
 * Login
 */
#recovery {
    height: 480px;
    position: absolute;
    top: 50%;
    left: 15px;
    right: 15px;
    transform: translate(0, -50%);
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px -6px gray;
}

/*
 * Formulary
 */
#recovery .formulary {
    padding: 20px 30px;
    position: relative;
    width: 100%;
    display: inline-block;
}

#recovery #form-login {
    max-width: 500px;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
    color: var(--label);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 75%;
    font-weight: 600;
}

/*
 * Logotype
 */
#logotype {
    margin: 30px auto 10px auto;
    text-align: center;
}

#logotype img {
    max-width: auto;
    max-height: 80px;
}

/*
 * Title
 */
.card-title {
    color: var(--gray-dark);
    font-weight: bold;
    font-size: 85%;
    line-height: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

/*
 * Form labels
 */
.login-label {
    display: inline-block;
    margin-bottom: .5rem;
    color: var(--label);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 75%;
    font-weight: 600;
}

/*
 * Buttons
 */
#recovery .formulary .btn {
    cursor: pointer;
}

/*
 * Media query
 */
@media (min-width: 1200px) {
    #recovery {
        width: 1140px;
        left: 50%;
        margin-left: -570px;
    }
}
