/* Authentication Pages Styles (Login, Signup, etc.) */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', 'Inter', sans-serif;
    background-color: #f8f6f2;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* ================================
   Background Decorations
   ================================ */

.auth-bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.auth-bg-decoration__blur {
    position: absolute;
    width: 512px;
    height: 410px;
    background-color: rgba(255, 56, 93, 0.05);
    border-radius: 9999px;
    filter: blur(50px);
}

.auth-bg-decoration__blur--top-right {
    top: -102px;
    right: -188px;
}

.auth-bg-decoration__blur--bottom-left {
    bottom: -102px;
    left: -128px;
}

/* ================================
   Header
   ================================ */

.auth-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px 17px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 56, 93, 0.1);
    z-index: 100;
}

.auth-header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.auth-header__logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff385d;
    border-radius: 8px;
}

.auth-header__logo-text {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #181012;
    letter-spacing: -0.5px;
}

.auth-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.auth-header__text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #8d5e66;
}

/* ================================
   Buttons
   ================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn--outline-primary {
    height: 40px;
    min-width: 84px;
    padding: 0 22px;
    font-size: 14px;
    color: #ff385d;
    background-color: transparent;
    border: 1px solid #ff385d;
    border-radius: 8px;
}

.btn--outline-primary:hover {
    background-color: rgba(255, 56, 93, 0.05);
}

.btn--primary {
    background-color: #ff385d;
    color: #ffffff;
}

.btn--primary:hover {
    background-color: #e6324f;
}

.btn--full {
    width: 100%;
}

.btn--login-submit {
    height: 48px;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(255, 56, 93, 0.2), 0 4px 6px -4px rgba(255, 56, 93, 0.2);
}

.btn--social {
    flex: 1;
    height: 44px;
    gap: 8px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600;
    color: #181012;
    background-color: transparent;
    border: 1px solid #e7dadd;
    border-radius: 8px;
}

.btn--social:hover {
    background-color: #f8f6f2;
    border-color: #d4c8cb;
}

/* ================================
   Main Content
   ================================ */

.auth-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 93px 24px;
    position: relative;
    z-index: 1;
}

.auth-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 642px;
    width: 100%;
}

/* ================================
   Title Section
   ================================ */

.auth-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.auth-title__heading {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #181012;
    margin: 0;
    line-height: 1.11;
}

.auth-title__subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #8d5e66;
    margin: 0;
    line-height: 1.43;
}

/* ================================
   Auth Card
   ================================ */

.auth-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 41px;
    background-color: #ffffff;
    border: 1px solid #eeebe6;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

/* ================================
   Form Styles
   ================================ */

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group--toggle {
    flex-direction: row;
    align-items: center;
}

.form-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-label {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #181012;
    line-height: 1.43;
}

.form-link {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #8d5e66;
    text-decoration: none;
    transition: color 0.2s ease;
}

.form-link:hover {
    color: #ff385d;
}

.form-input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    height: 48px;
    padding: 0 17px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #181012;
    background-color: #ffffff;
    border: 1px solid #e7dadd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-input::placeholder {
    color: rgba(141, 94, 102, 0.5);
}

.form-input:focus {
    border-color: #ff385d;
}

.form-input--password {
    padding-right: 48px;
}

.form-input__toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.form-input__toggle:hover svg path {
    stroke: #ff385d;
}

/* ================================
   Toggle Switch
   ================================ */

.toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle input {
    display: none;
}

.toggle__slider {
    position: relative;
    width: 44px;
    height: 24px;
    background-color: #e5e7eb;
    border-radius: 9999px;
    transition: background-color 0.2s ease;
}

.toggle__slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.toggle input:checked + .toggle__slider {
    background-color: #ff385d;
}

.toggle input:checked + .toggle__slider::before {
    transform: translateX(20px);
    border-color: transparent;
}

.toggle__label {
    margin-left: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #181012;
}

/* ================================
   Divider
   ================================ */

.auth-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e7dadd;
}

.auth-divider__text {
    position: relative;
    padding: 0 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #8d5e66;
    text-transform: uppercase;
    background-color: #ffffff;
}

/* ================================
   Social Buttons
   ================================ */

.auth-social {
    display: flex;
    gap: 16px;
}

/* ================================
   Footer
   ================================ */

.auth-footer {
    display: flex;
    justify-content: center;
}

.auth-footer__text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #8d5e66;
    margin: 0;
}

.auth-footer__link {
    font-weight: 700;
    color: #ff385d;
    text-decoration: none;
}

.auth-footer__link:hover {
    text-decoration: underline;
}

/* ================================
   Decorative Images
   ================================ */

.auth-decoration-images {
    display: flex;
    gap: 24px;
    justify-content: center;
    padding-top: 8px;
}

.auth-decoration-images__item {
    width: 64px;
    height: 64px;
    border: 1px solid #e7dadd;
    border-radius: 8px;
    overflow: hidden;
}

.auth-decoration-images__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================
   Responsive Styles
   ================================ */

@media (max-width: 768px) {
    .auth-header {
        padding: 12px 20px;
    }

    .auth-main {
        padding: 80px 20px 40px;
    }

    .auth-title__heading {
        font-size: 28px;
    }

    .auth-card {
        padding: 24px;
    }

    .auth-social {
        flex-direction: column;
    }

    .btn--social {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .auth-header__text {
        display: none;
    }

    .auth-title__heading {
        font-size: 24px;
    }

    .auth-decoration-images {
        gap: 16px;
    }

    .auth-decoration-images__item {
        width: 56px;
        height: 56px;
    }
}

/* ================================
   Signup Page Specific Styles
   ================================ */

.auth-body--signup {
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.auth-main--signup {
    flex: 1;
    padding: 32px;
    padding-top: 100px;
}

/* Signup Card */
.signup-card {
    max-width: 480px;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.signup-card__body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.signup-card__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.signup-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin: 0;
}

.signup-card__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
}

/* Signup Form */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-label--uppercase {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding-left: 4px;
}

.form-input--rounded {
    border-radius: 16px;
    height: 56px;
    padding: 0 17px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    border: 1px solid #d1d5db;
}

.form-input--rounded::placeholder {
    color: #9ca3af;
}

.form-input--rounded:focus {
    border-color: #ff385d;
    outline: none;
}

/* Checkbox Styles */
.form-group--checkbox {
    padding: 8px 0;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox input {
    display: none;
}

.checkbox__box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.checkbox input:checked + .checkbox__box {
    background-color: #ff385d;
    border-color: #ff385d;
}

.checkbox input:checked + .checkbox__box::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 7px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox__label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.4;
}

.checkbox__link {
    font-weight: 600;
    color: #ff385d;
    text-decoration: none;
}

.checkbox__link:hover {
    text-decoration: underline;
}

/* Signup Submit Button */
.btn--signup-submit {
    height: 56px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 16px;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* Social Dark Buttons */
.signup-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn--social-dark {
    width: 100%;
    height: 58px;
    gap: 12px;
    padding: 0 18px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    background-color: transparent;
    border: 2px solid #111827;
    border-radius: 16px;
}

.btn--social-dark:hover {
    background-color: #f9fafb;
}

/* Signup Card Footer */
.signup-card__footer {
    background-color: #f9fafb;
    border-top: 1px solid #f3f4f6;
    padding: 24px;
    text-align: center;
}

.signup-card__footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #4b5563;
    margin: 0;
}

.signup-card__footer-link {
    font-weight: 700;
    color: #111827;
    text-decoration: none;
}

.signup-card__footer-link:hover {
    text-decoration: underline;
}

/* Page Footer */
.auth-page-footer {
    padding: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-page-footer__links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.auth-page-footer__link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #9ca3af;
    text-decoration: none;
}

.auth-page-footer__link:hover {
    color: #6b7280;
}

.auth-page-footer__copyright {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #9ca3af;
    margin: 0;
}

/* Signup Responsive Styles */
@media (max-width: 768px) {
    .auth-main--signup {
        padding: 24px 16px;
        padding-top: 80px;
    }

    .signup-card__body {
        padding: 24px;
        gap: 24px;
    }

    .signup-card__title {
        font-size: 24px;
    }

    .signup-card__footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .signup-card__title {
        font-size: 22px;
    }

    .btn--signup-submit,
    .btn--social-dark {
        height: 52px;
    }
}

/* ================================
   Email Verification Page Styles
   ================================ */

.auth-body--verify {
    background-color: #f8f6f2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.verify-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
}

.verify-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 512px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Verification Card */
.verify-card {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #f0ece9;
    border-radius: 12px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

/* Illustration Section */
.verify-card__illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 0 32px;
}

.verify-card__icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-card__icon-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: rgba(255, 56, 93, 0.05);
    border-radius: 50%;
    filter: blur(12px);
}

.verify-card__icon {
    position: relative;
    width: 78px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff 0%, #fef7f8 100%);
    border-radius: 16px;
    box-shadow: 0px 4px 20px rgba(255, 56, 93, 0.15);
}

.verify-card__icon svg {
    width: 40px;
    height: 32px;
}

/* Content Section */
.verify-card__content {
    padding: 0 48px 48px;
    text-align: center;
}

.verify-card__title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #181012;
    margin: 0 0 24px;
    line-height: 1.1;
}

.verify-card__message {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.verify-card__text {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #5c5254;
    line-height: 1.6;
    margin: 0;
}

.verify-card__email {
    font-weight: 600;
    color: #181012;
}

.verify-card__subtext {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #8d7d7f;
    line-height: 1.5;
    margin: 0;
}

/* Action Buttons */
.verify-card__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn--resend {
    height: 48px;
    font-size: 16px;
    font-weight: 700;
    border-width: 2px;
}

.btn--resend:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.verify-card__change-email {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #8d7d7f;
    margin: 16px 0 0;
}

.verify-card__link {
    font-weight: 500;
    color: #ff385d;
    text-decoration: none;
}

.verify-card__link:hover {
    text-decoration: underline;
}

/* Footer Tips */
.verify-tips {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.verify-tips__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #8d7d7f;
}

.verify-tips__item svg {
    flex-shrink: 0;
}

.verify-tips__back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #8d7d7f;
    text-decoration: none;
    transition: color 0.2s ease;
}

.verify-tips__back:hover {
    color: #ff385d;
}

.verify-tips__back:hover svg path {
    stroke: #ff385d;
}

/* Background Gradient */
.verify-bg-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33%;
    background: linear-gradient(to top, rgba(255, 56, 93, 0.06), transparent);
    opacity: 0.2;
    pointer-events: none;
}

/* Verification Page Responsive */
@media (max-width: 768px) {
    .verify-main {
        padding: 80px 20px 40px;
    }

    .verify-card__content {
        padding: 0 24px 32px;
    }

    .verify-card__title {
        font-size: 28px;
    }

    .verify-card__text {
        font-size: 16px;
    }

    .verify-card__subtext {
        font-size: 14px;
    }

    .verify-card__illustration {
        padding: 48px 0 24px;
    }
}

@media (max-width: 480px) {
    .verify-card__title {
        font-size: 24px;
    }

    .verify-card__icon {
        width: 64px;
        height: 60px;
    }

    .verify-card__icon svg {
        width: 32px;
        height: 26px;
    }
}

/* ================================
   Email Verified Success Page
   ================================ */

.auth-body--success {
    background-color: #f8f6f2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    width: 100%;
}

/* Success Card */
.success-card {
    max-width: 512px;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #f5f0f1;
    border-radius: 12px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.04);
    padding: 48px;
    text-align: center;
}

/* Success Icon */
.success-card__icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.success-card__icon-ring {
    position: absolute;
    width: 96px;
    height: 96px;
    background-color: rgba(255, 56, 93, 0.1);
    border-radius: 50%;
}

.success-card__icon {
    position: relative;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff385d;
    border-radius: 50%;
    box-shadow: 0px 10px 15px -3px rgba(255, 56, 93, 0.2), 0px 4px 6px -4px rgba(255, 56, 93, 0.2);
}

/* Content */
.success-card__content {
    margin-bottom: 40px;
}

.success-card__title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #181012;
    line-height: 1.1;
    margin: 0 0 16px;
}

.success-card__subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #8d5e66;
    line-height: 1.6;
    margin: 0;
}

/* CTA Actions */
.success-card__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn--success-cta {
    height: 56px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0px 4px 6px -1px rgba(255, 56, 93, 0.2), 0px 2px 4px -2px rgba(255, 56, 93, 0.2);
}

.success-card__home-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ff385d;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.success-card__home-link:hover {
    opacity: 0.8;
}

.success-card__home-link svg {
    transition: transform 0.2s ease;
}

.success-card__home-link:hover svg {
    transform: translateX(3px);
}

/* Success Page Responsive */
@media (max-width: 768px) {
    .success-card {
        padding: 32px 24px;
    }

    .success-card__title {
        font-size: 28px;
    }

    .success-card__subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .success-card__title {
        font-size: 24px;
    }

    .success-card__icon-wrapper {
        margin-bottom: 24px;
    }

    .success-card__icon-ring,
    .success-card__icon {
        width: 80px;
        height: 80px;
    }

    .success-card__icon svg {
        width: 36px;
        height: 30px;
    }

    .btn--success-cta {
        height: 52px;
    }
}

/* ================================
   Forgot Password Page
   ================================ */

.auth-body--forgot {
    background-color: #f8f6f2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forgot-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    width: 100%;
    position: relative;
}

/* Forgot Password Card */
.forgot-card {
    max-width: 450px;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid rgba(231, 218, 221, 0.3);
    border-radius: 12px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.04);
    padding: 40px;
}

.forgot-card__header {
    margin-bottom: 24px;
}

.forgot-card__title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #181012;
    line-height: 1.1;
    margin: 0 0 12px;
    text-align: center;
}

.forgot-card__subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #8d5e66;
    line-height: 1.6;
    margin: 0;
}

/* Forgot Form */
.forgot-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 8px;
}

.form-input--with-icon {
    padding-left: 49px;
}

.form-input__icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.btn--forgot-submit {
    height: 56px;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0px 10px 15px -3px rgba(255, 56, 93, 0.2), 0px 4px 6px -4px rgba(255, 56, 93, 0.2);
}

.btn--forgot-submit svg {
    transition: transform 0.2s ease;
}

.btn--forgot-submit:hover svg {
    transform: translateX(3px);
}

/* Card Footer */
.forgot-card__footer {
    border-top: 1px solid rgba(231, 218, 221, 0.3);
    padding-top: 25px;
    display: flex;
    justify-content: center;
}

.forgot-card__back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #8d5e66;
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-card__back-link:hover {
    color: #ff385d;
}

.forgot-card__back-link:hover svg path {
    stroke: #ff385d;
}

/* Decorative Gradient Line */
.forgot-gradient-line {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 56, 93, 0.1) 0%, #ff385d 50%, rgba(255, 56, 93, 0.1) 100%);
    opacity: 0.5;
}

/* Forgot Password Success State */
.forgot-card__success {
    text-align: center;
}

.forgot-card__success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff385d;
    border-radius: 50%;
    box-shadow: 0px 10px 15px -3px rgba(255, 56, 93, 0.2);
}

.forgot-card__resend {
    margin-top: 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #8d5e66;
}

.forgot-card__resend-btn {
    background: none;
    border: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ff385d;
    cursor: pointer;
    padding: 0;
}

.forgot-card__resend-btn:hover {
    text-decoration: underline;
}

/* Forgot Password Responsive */
@media (max-width: 768px) {
    .forgot-card {
        padding: 32px 24px;
    }

    .forgot-card__title {
        font-size: 28px;
    }

    .forgot-card__subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .forgot-card__title {
        font-size: 24px;
    }

    .btn--forgot-submit {
        height: 52px;
        font-size: 16px;
    }
}

/* ================================
   Reset Password Page
   ================================ */

.auth-body--reset {
    background-color: #f8f6f2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    width: 100%;
}

/* Reset Card */
.reset-card {
    max-width: 480px;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid rgba(255, 56, 93, 0.05);
    border-radius: 12px;
    box-shadow: 0px 20px 25px -5px rgba(255, 56, 93, 0.05), 0px 8px 10px -6px rgba(255, 56, 93, 0.05);
    overflow: hidden;
}

.reset-card__accent {
    height: 8px;
    background-color: #ff385d;
}

.reset-card__body {
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.reset-card__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reset-card__title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #181012;
    line-height: 1.1;
    margin: 0;
}

.reset-card__subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #8d5e66;
    line-height: 1.6;
    margin: 0;
}

/* Reset Form */
.reset-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 16px;
}

.btn--reset-submit {
    height: 56px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    border-radius: 8px;
    margin-top: 8px;
    box-shadow: 0px 10px 15px -3px rgba(255, 56, 93, 0.2), 0px 4px 6px -4px rgba(255, 56, 93, 0.2);
}

/* Password Strength Meter */
.password-strength {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.password-strength__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.password-strength__label {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #181012;
}

.password-strength__status {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ef4444;
    transition: color 0.2s ease;
}

.password-strength__meter {
    display: flex;
    gap: 6px;
    height: 8px;
}

.password-strength__bar {
    flex: 1;
    height: 100%;
    background-color: #e7dadd;
    border-radius: 9999px;
    transition: background-color 0.2s ease;
}

.password-strength__bar[data-filled="true"] {
    background-color: #ff385d;
}

.password-strength__hint {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #8d5e66;
    line-height: 1.3;
    margin: 0;
}

/* Reset Card Footer */
.reset-card__footer {
    border-top: 1px solid #e7dadd;
    padding-top: 33px;
    display: flex;
    justify-content: center;
}

.reset-card__back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #8d5e66;
    text-decoration: none;
    transition: color 0.2s ease;
}

.reset-card__back-link:hover {
    color: #ff385d;
}

.reset-card__back-link:hover svg path {
    stroke: #ff385d;
}

/* Reset Password Responsive */
@media (max-width: 768px) {
    .reset-card__body {
        padding: 32px 24px;
        gap: 24px;
    }

    .reset-card__title {
        font-size: 28px;
    }

    .reset-card__subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .reset-card__title {
        font-size: 24px;
    }

    .btn--reset-submit {
        height: 52px;
    }
}

/* ================================
   Reset Password Success Page
   ================================ */

.auth-body--reset-success {
    background-color: #f8f6f2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-success-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    width: 100%;
}

.reset-success-card {
    max-width: 512px;
    width: 100%;
    height: 500px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px;
    text-align: center;
}

.reset-success-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 56, 93, 0.1);
    border-radius: 50%;
    margin-bottom: 32px;
}

.reset-success-card__content {
    margin-bottom: 40px;
}

.reset-success-card__title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #181012;
    line-height: 1.1;
    margin: 0 0 16px;
}

.reset-success-card__subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(24, 16, 18, 0.7);
    line-height: 1.55;
    margin: 0;
    max-width: 384px;
}

.reset-success-card__actions {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn--reset-success {
    height: 56px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.24px;
    border-radius: 8px;
}

.reset-success-card__secondary-link {
    display: block;
    padding-top: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(24, 16, 18, 0.5);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    transition: color 0.2s ease;
}

.reset-success-card__secondary-link:hover {
    color: #ff385d;
}

/* Reset Success Responsive */
@media (max-width: 768px) {
    .reset-success-card {
        height: auto;
        min-height: 450px;
        padding: 40px 24px;
    }

    .reset-success-card__title {
        font-size: 28px;
    }

    .reset-success-card__subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .reset-success-card__title {
        font-size: 24px;
    }

    .reset-success-card__icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    .reset-success-card__icon svg {
        width: 30px;
        height: 30px;
    }

    .btn--reset-success {
        height: 52px;
    }
}
