html, body { height: 100%; margin: 0; padding: 0; }

#page-login {
    display: block;
    z-index: 100;
    background-color: #fff;
}

.login-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 18%;
    box-sizing: border-box;
}

.login-box {
    width: 100%;
    max-width: 420px;
    padding: 0 28px;
    box-sizing: border-box;
}

/* Logo */
.login-logo-img {
    display: flex;
    justify-content: center;
    margin-bottom: 52px;
}

.login-logo-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Title & subtitle */
.login-form-title {
    font-family: "Roboto", sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #333;
    margin: 0 0 10px;
}

.login-subtitle {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 300;
    margin: 0 0 60px;
    line-height: 20px;
}

.login-subtitle-gray { color: #666; }
.login-subtitle-blue { color: #1984f6; }

/* Inputs */
.login-input-group {
    margin-bottom: 28px;
}

.login-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #333;
    background: transparent;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.login-input::placeholder {
    color: #999;
    font-weight: 300;
}

.login-input:focus {
    border-bottom-color: #1984f6;
}

/* Forgot password */
.login-forgot {
    text-align: right;
    margin-bottom: 32px;
}

.login-forgot a {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #555;
    text-decoration: none;
}

.login-forgot .mdi {
    font-size: 14px;
    margin-right: 3px;
}

/* Button */
.login-button {
    width: 100%;
    padding: 16px;
    background-color: #1984f6;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    text-transform: uppercase;
}

.login-button:active {
    background-color: #1565C0;
}

/* ── Recover password page ─────────────────────────────────── */
#page-recover-password {
    background-color: #fff;
    position: absolute;
    z-index: 120;
    display: none;
    overflow-y: auto;
    top: 0px;
}

.recover-password-header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
    color: #333;
}

#recover-password__txt-title {
    font-size: 18px;
    font-weight: 300;
}

.recover-password-content {
    padding: 32px 0;
    display: flex;
    justify-content: center;
}

.recover-password-text {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666;
    margin-bottom: 36px;
    line-height: 22px;
}

.recover-password-wrapper { width: 100%; }
.recover-password-box { width: 100%; }

.recover-password-message {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666;
    line-height: 22px;
}

.page-action-button {
    height: 55px;
    width: 45px;
    text-align: center;
    line-height: 54px;
    font-size: 28px;
    color: #67757c !important;
    bottom: 0px;
    float: left;
    z-index: 150;
}
