/* =====================================================
   Auth Pages: login, forgot, confirmation, reset
   ===================================================== */

/* --- Shared --- */
.back-page {
    color: #65258a;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}
.back-page:hover {
    color: #65258a;
    text-decoration: none;
}
.login-form-group {
    margin-bottom: 1rem;
}
.performance-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f114c;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}
.performance-title span {
    border-bottom: 3px solid #0f114c;
    padding-bottom: 4px;
}
.button-trial {
    background: #0f114c;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.25s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}
.button-trial:hover {
    background: #0f114c;
}
.account-logo {
    text-align: center;
    margin-bottom: 1.2rem;
}
.account-logo img {
    max-height: 70px;
}

/* --- Login Page --- */
.login-section {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
}
.login-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* --- Forgot Password Page --- */
.forgot-section {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
}
.forgot-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.login-message {
    text-align: center;
    font-size: 14px;
    color: #707070;
    margin-bottom: 1rem;
}

/* --- Confirmation Code Page --- */
.confirmation-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
    background: #f6f6f6;
}
.confirmation-card {
    background: #fff;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}
.account-title {
    text-align: center;
    font-size: 1.5rem !important;
    font-weight: 700;
    color: #0f114c;
    margin-bottom: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 3px solid #0f114c;
    padding-bottom: 6px;
    display: inline-block;
}
.account-title-wrap {
    text-align: center;
    margin-bottom: 1.5rem;
}
.account-btn {
    background: #0f114c !important;
    border: none !important;
    color: #fff !important;
    padding: 12px !important;
    width: 100%;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.25s ease;
}
.account-btn:hover {
    background: #0f114c !important;
}
.confirmation-note {
    font-size: 14px;
    color: #707070;
    margin-bottom: 1rem;
    text-align: center;
}

/* --- Reset Password Page --- */
.reset-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
    background: #f6f6f6;
}
.reset-card {
    background: #fff;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}
.reset-title {
    text-align: center;
    font-size: 1.5rem !important;
    font-weight: 700;
    color: #0f114c;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 3px solid #0f114c;
    padding-bottom: 6px;
    display: inline-block;
}
.reset-title-wrap {
    text-align: center;
    margin-bottom: 1.5rem;
}
.reset-btn {
    background: #0f114c !important;
    border: none !important;
    color: #fff !important;
    padding: 12px !important;
    width: 100%;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.25s ease;
}
.reset-btn:hover {
    background: #0f114c !important;
}
.form-label-custom {
    font-size: 13px;
    font-weight: 600;
    color: #0f114c;
}
