/* ======================================== */
/* Design Tokens */
/* ======================================== */
:root {
    --color-primary: #0D5257;
    --color-primary-hover: #087990;
    --color-text-main: #212529;
    --color-text-muted: #6C757D;
    --color-border: #E5E7EB;
    --color-input-border: #DADADA;
    --color-bg: #FAFBFC;
    --color-white: #FFFFFF;
    --color-error: #DC2626;
}

/* ======================================== */
/* Font Imports */
/* ======================================== */
@font-face {
    font-family: "Roboto";
    src: url(/fonts/Roboto-VariableFont_wdth,wght.ttf);
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Italic";
    src: url(/fonts/Roboto-Italic-VariableFont_wdth,wght.ttf);
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* ======================================== */
/* Reset and Base Styles */
/* ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-bg);
    min-height: 100vh;
}

/* ======================================== */
/* Typography */
/* ======================================== */
.auth-h2 {
    color: #212529;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.auth-sub-header {
    color: #6C757D;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.auth-nav-text {
    color: #212529;
    font-size: 1.25rem;
    font-weight: 400;
    display: flex;
    gap: 0.4rem;
    margin: 0;
}

/* ======================================== */
/* Navigation */
/* ======================================== */
.top-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.5rem 0.75rem 0.5rem;
    position: relative;
    top: 0;
}

.back-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7px 0px;
    gap: 6px;
    width: 53px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.back-link a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #09101D;
    transition: all 0.2s ease;
}

.back-link a img {
    transition: all 0.2s ease;
}

.back-link:hover a {
    color: #0D5257;
}

.back-link:hover a img {
    filter: brightness(0) saturate(100%) invert(25%) sepia(15%) saturate(2000%) hue-rotate(180deg) brightness(0.8) contrast(0.8);
}

.back-link.hidden {
    display: none;
}

.auth-nav-div {
    display: flex;
    justify-content: flex-end;
    font-size: 0.875rem;
    color: #374151;
    flex: 1;
}

.auth-nav-link {
    color: #0D5257;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.auth-nav-link:hover {
    color: #087990;
    text-decoration: underline;
    transform: translateY(-1px);
}

/* ======================================== */
/* Form Container */
/* ======================================== */
.auth-form-div {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    margin: 0 auto;
    max-width: 512px;
    width: 100%;
}

.auth-color-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logo-image {
    height: 3rem;
    width: auto;
    max-width: 100%;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.auth-form .intro h2 {
    display: none;
}

.auth-form .entry {
    /* order: 1; */
    display: flex;
    flex-direction: column;
    gap: 0;
}

.auth-form .entry-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
}

.auth-form .entry-item label {
    /* order: 1; */
    color: #212529;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.375rem;
}


/* ======================================== */
/* Form Elements */
/* ======================================== */
.auth-form .password-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.375rem;
}

.auth-form .password-label label {
    flex: 1;
    margin-bottom: 0;
}

.auth-form #forgotPassword {
    flex-shrink: 0;
    color: #0D5257;
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease;
}

.auth-form #forgotPassword:hover {
    color: #087990;
    text-decoration: underline;
    transform: translateY(-1px);
}

#email, #password, #otp, #newPassword, #confirmPassword, #code,
.auth-form-div .form-control,
.auth-form-div input[type="text"],
.auth-form-div input[type="email"],
.auth-form-div input[type="password"],
.auth-form .form-control,
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border: 1px solid #DADADA;
    font-size: 1rem;
    width: 100%;
    transition: all 0.2s ease;
    background-color: #FFFFFF;
    color: #212529;
    font-family: inherit;
}

#email:focus, #password:focus, #otp:focus, #newPassword:focus, #confirmPassword:focus, #code:focus,
.auth-form-div .form-control:focus,
.auth-form-div input[type="text"]:focus,
.auth-form-div input[type="email"]:focus,
.auth-form-div input[type="password"]:focus,
.auth-form .form-control:focus,
.auth-form input[type="text"]:focus,
.auth-form input[type="email"]:focus,
.auth-form input[type="password"]:focus {
    outline: none;
    border-color: #0D5257;
    box-shadow: 0 0 0 3px rgba(13, 82, 87, 0.15);
    transform: translateY(-1px);
}

#email:hover, #password:hover, #otp:hover, #newPassword:hover, #confirmPassword:hover, #code:hover,
.auth-form-div .form-control:hover,
.auth-form-div input[type="text"]:hover,
.auth-form-div input[type="email"]:hover,
.auth-form-div input[type="password"]:hover,
.auth-form .form-control:hover,
.auth-form input[type="text"]:hover,
.auth-form input[type="email"]:hover,
.auth-form input[type="password"]:hover {
    border-color: #CED4DA;
}

#email::placeholder, #password::placeholder, #otp::placeholder, #newPassword::placeholder, #confirmPassword::placeholder, #code::placeholder,
.auth-form-div .form-control::placeholder,
.auth-form-div input[type="text"]::placeholder,
.auth-form-div input[type="email"]::placeholder,
.auth-form-div input[type="password"]::placeholder,
.auth-form .form-control::placeholder,
.auth-form input[type="text"]::placeholder,
.auth-form input[type="email"]::placeholder,
.auth-form input[type="password"]::placeholder {
    color: #6C757D;
    font-size: 0.875rem;
    font-weight: 400;
}

.required {
    color: #DC3545;
}

#rememberMe {
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    border: 1px solid #DADADA;
    background-color: #FFFFFF;
    cursor: pointer;
    accent-color: #0D5257;
}

#rememberMe:checked {
    background-color: #0D5257;
    border-color: #0D5257;
}

/* ======================================== */
/* States: Error, Hover, Focus */
/* ======================================== */
.auth-form .entry-item .error.itemLevel {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #DC2626;
    display: none;
}

.auth-form .entry-item .error.itemLevel.show {
    display: block;
}

.auth-form .entry-item .error.itemLevel p {
    margin: 0;
    color: #DC2626;
}

.auth-form .entry-item .validation-message,
.auth-form .entry-item span[class*="validation"] {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #DC2626;
    display: block;
}

.auth-form .entry-item input.error,
.auth-form .entry-item .form-control.modified.invalid,
.auth-form .entry-item input.modified.invalid {
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    background-color: #FEFEFE;
}

.auth-form .entry-item input.error:focus,
.auth-form .entry-item .form-control.modified.invalid:focus,
.auth-form .entry-item input.modified.invalid:focus {
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.error.pageLevel {
    display: block;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #F8D7DA;
    border: 1px solid #F5C6CB;
    border-radius: 0.25rem;
}

.error.pageLevel p,
.error.pageLevel .text-danger {
    color: #721C24;
    margin: 0;
    font-size: 0.875rem;
}

/* ======================================== */
/* Buttons */
/* ======================================== */
.auth-form .rememberMe {
    /* order: 2; */
    margin-bottom: 1.5rem;
}

.rememberMe {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    color: #212529;
    font-size: 0.875rem;
    font-weight: 400;
}

.rememberMe label {
    cursor: pointer;
    color: #212529;
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
}

.remember-me-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    width: 100%;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.remember-me-container > span:first-child {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex: 0 0 auto;
    justify-content: flex-start;
}

.remember-me-container > span:last-child {
    display: flex;
    align-items: center;
    margin-left: auto;
    justify-content: flex-end;
}

.remember-me-container input[type="checkbox"] {
    margin: 0;
    margin-right: 0.375rem;
}

.remember-me-container label {
    margin: 0;
    cursor: pointer;
    font-size: 0.875rem;
    color: #212529;
}

.auth-form-div .buttons > button[type="submit"],
.auth-form .buttons > button[type="submit"],
.reset-new-page .buttons > button[type="submit"],
.reset-verify-page .buttons > button[type="submit"] {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    border: none;
    background-color: #0D5257;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-align: center;
}

.auth-form-div .buttons > button[type="submit"]:hover,
.auth-form .buttons > button[type="submit"]:hover,
.reset-new-page .buttons > button[type="submit"]:hover,
.reset-verify-page .buttons > button[type="submit"]:hover {
    background-color: #087990;
    color: #FFFFFF;
    border: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(13, 82, 87, 0.3);
}

.auth-form-div .buttons > button[type="submit"]:active,
.auth-form .buttons > button[type="submit"]:active,
.reset-new-page .buttons > button[type="submit"]:active,
.reset-verify-page .buttons > button[type="submit"]:active {
    background-color: #087990;
    color: #FFFFFF;
    border: none;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(13, 82, 87, 0.3);
}

.auth-form-div .buttons > button[type="submit"]:focus-visible,
.auth-form .buttons > button[type="submit"]:focus-visible,
.reset-new-page .buttons > button[type="submit"]:focus-visible,
.reset-verify-page .buttons > button[type="submit"]:focus-visible {
    outline: none;
    background-color: #0D5257;
    color: #FFFFFF;
    border: none;
    box-shadow: 0px 0px 0px 3px rgba(13, 82, 87, 0.3);
}

.auth-form-div .buttons > button[type="submit"]:disabled,
.auth-form .buttons > button[type="submit"]:disabled,
.reset-new-page .buttons > button[type="submit"]:disabled,
.reset-verify-page .buttons > button[type="submit"]:disabled {
    background-color: #0D5257;
    color: #FFFFFF;
    border: none;
    opacity: 0.7;
    cursor: not-allowed;
}

.buttons button,
#next {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    border: none;
    background-color: #0D5257;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-align: center;
}

#next:hover {
    background-color: #087990;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(13, 82, 87, 0.3);
}

#next:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(13, 82, 87, 0.3);
}

#next:focus-visible {
    outline: none;
    box-shadow: 0px 0px 0px 3px rgba(13, 82, 87, 0.3);
}

#next:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ======================================== */
/* Utilities */
/* ======================================== */
.page-loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
}

.page-loading-spinner.hidden {
    display: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #087990;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: #6C757D;
    font-size: 0.875rem;
    font-weight: 500;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.divider {
    color: #6C757D;
    font-size: 0.875rem;
    font-weight: 400;
    overflow: hidden;
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-form .divider {
    /* order: 4; */
    margin: 1.5rem 0;
}

.divider h2 {
    position: relative;
    display: inline-block;
    background: #FFFFFF;
    padding: 0 1rem;
    z-index: 2;
    color: #6C757D;
    font-size: 0.875rem;
    font-weight: 400;
}

.divider h2::before,
.divider h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100vw;
    height: 1px;
    background: #DADADA;
    z-index: 1;
}

.divider h2::before {
    right: 100%;
    margin-right: 1rem;
}

.divider h2::after {
    left: 100%;
    margin-left: 1rem;
}

/* ======================================== */
/* B2C Compatibility */
/* ======================================== */
.heading h1,
h1[role="heading"] {
    display: none;
}

.social-login-section {
    width: 100%;
    margin-bottom: 1.5rem;
}

.social-login-section .intro h2 {
    display: none;
}

.social-login-section .options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    height: 48px;
    padding: 0.75rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #FFFFFF;
    color: #374151;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.auth-form .social-btn.google-btn {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    color: #374151;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.auth-form .social-btn.google-btn:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
    color: #374151;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.auth-form .social-btn.google-btn:active {
    background: #FFFFFF;
    border-color: #E5E7EB;
    color: #374151;
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.auth-form .social-btn.google-btn:focus-visible {
    background: #FFFFFF;
    border-color: #E5E7EB;
    color: #374151;
    outline: none;
    box-shadow: 0px 0px 0px 3px rgba(13, 82, 87, 0.15);
}

.google-btn:hover,
.apple-btn:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.google-btn:active,
.apple-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-btn:focus-visible {
    outline: none;
    box-shadow: 0px 0px 0px 3px rgba(13, 82, 87, 0.15);
}

.auth-form .claims-provider-list-buttons.social {
    /* order: 5; */
    margin-bottom: 0;
}

.auth-form .create {
    display: none;
}

.working {
    display: none;
}

/* ======================================== */
/* MFA Resend Button */
/* ======================================== */
.mfa-actions {
    margin-top: 1rem;
    text-align: right;
}

.resend-button {
    background: none;
    border: none;
    color: #0D5257;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.resend-button:hover:not(:disabled) {
    color: #087990;
    text-decoration: underline;
}

.resend-button:disabled {
    color: #9CA3AF;
    cursor: not-allowed;
}

/* ======================================== */
/* MFA Custom Overrides */
/* ======================================== */

/* Hide logo and main title for MFA */
.mfa-page .auth-color-logo,
.mfa-page .auth-h2 {
    display: none;
}

/* Hide Back and Register nav */
.mfa-page .top-navigation,
.mfa-page .back-link,
.mfa-page .auth-nav-div {
    display: none;
}

/* Make intro text large and left aligned */
.mfa-page .auth-sub-header {
    text-align: left;
    font-size: 1.75rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
}

/* MFA Resend Button */
.mfa-page .resend-button {
    color: #0D5257;
    font-weight: 700;
}

.mfa-page .resend-button:hover:not(:disabled) {
    color: #087990;
    text-decoration: underline;
}

.mfa-page .resend-button:disabled {
    color: #9CA3AF;
}

/* ======================================== */
/* Reset Password New Page Overrides */
/* ======================================== */

/* Hide logo and main title for Reset Password New */
.reset-new-page .auth-color-logo,
.reset-new-page .auth-h2,
.reset-new-page .top-navigation,
.reset-new-page .back-link,
.reset-new-page .auth-nav-div {
    display: none;
}

/* Make intro text large and left aligned */
.reset-new-page .auth-sub-header {
    text-align: left;
    font-size: 1.75rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
}

/* ======================================== */
/* Reset Password Verify Page Overrides */
/* ======================================== */

/* Hide logo and main title for Reset Password Verify */
.reset-verify-page .auth-color-logo,
.reset-verify-page .auth-h2,
.reset-verify-page .top-navigation,
.reset-verify-page .back-link,
.reset-verify-page .auth-nav-div {
    display: none;
}

/* Make intro text large and left aligned */
.reset-verify-page .auth-sub-header {
    text-align: left;
    font-size: 1.75rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
}

/* ======================================== */
/* Responsive Design */
/* ======================================== */
@media only screen and (max-width: 1024px) {
    .auth-h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .auth-sub-header {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .auth-nav-div {
        max-width: 512px;
        margin-left: auto;
        margin-right: auto;
    }

    .auth-nav-text {
        text-align: right;
        color: #212529;
        font-size: 1rem;
    }

    .auth-nav-link {
        color: #0D5257;
        text-decoration: none;
        font-size: 1rem;
    }

    .auth-nav-link:hover {
        text-decoration: underline;
    }
}

@media only screen and (max-width: 768px) {
    .auth-form-div {
        padding: 1.5rem;
        width: 100%;
    }

    .auth-h2 {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .auth-sub-header {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .auth-color-logo {
        margin-bottom: 0.75rem;
    }

    .logo-image {
        height: 2.5rem;
    }

    .auth-nav-text {
        font-size: 0.875rem;
        text-align: right;
    }

    .auth-nav-link {
        font-size: 0.875rem;
        font-weight: 400;
        color: #0D5257;
    }

    .auth-form .entry-item label {
        font-size: 0.875rem;
    }

    #email, #password, #otp, #newPassword, #confirmPassword, #code,
    .auth-form-div .form-control,
    .auth-form-div input[type="text"],
    .auth-form-div input[type="email"],
    .auth-form-div input[type="password"],
    .auth-form .form-control,
    .auth-form input[type="text"],
    .auth-form input[type="email"],
    .auth-form input[type="password"] {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .auth-form .password-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .auth-form #forgotPassword {
        font-size: 0.8rem;
    }

    .rememberMe, .remember-me-container {
        margin-bottom: 0.75rem;
    }

    .rememberMe label, .remember-me-container label {
        font-size: 0.8rem;
    }

    .remember-me-container {
        flex-wrap: nowrap;
        gap: 0.5rem;
        justify-content: space-between;
    }

    .remember-me-container > span:first-child {
        flex: 0 0 auto;
        justify-content: flex-start;
    }

    .remember-me-container > span:last-child {
        margin-left: auto;
        justify-content: flex-end;
    }

    #next {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .social-btn {
        padding: 0.75rem;
        font-size: 0.875rem;
        gap: 0.5rem;
    }

    .social-icon {
        width: 18px;
        height: 18px;
    }

    .divider {
        margin: 0.75rem 0;
    }

    .divider h2 {
        font-size: 0.8rem;
    }
}

@media only screen and (max-width: 393px) {
    .auth-form-div {
        padding: 1.25rem;
        width: 100%;
    }

    .auth-h2 {
        font-size: 1.25rem;
    }

    .auth-sub-header {
        font-size: 0.75rem;
    }

    .logo-image {
        height: 2rem;
    }

    .auth-nav-text {
        text-align: right;
        font-size: 0.8rem;
    }

    .auth-nav-link {
        color: #0D5257;
        font-size: 0.8rem;
    }

    #email, #password, #otp, #newPassword, #confirmPassword, #code,
    .auth-form-div .form-control,
    .auth-form-div input[type="text"],
    .auth-form-div input[type="email"],
    .auth-form-div input[type="password"],
    .auth-form .form-control,
    .auth-form input[type="text"],
    .auth-form input[type="email"],
    .auth-form input[type="password"] {
        padding: 0.625rem;
        font-size: 0.8rem;
    }

    #next {
        padding: 0.625rem 0.75rem;
        font-size: 0.8rem;
    }

    .social-btn {
        padding: 0.625rem;
        font-size: 0.8rem;
    }

    .social-icon {
        width: 16px;
        height: 16px;
    }
}

.divider {
    margin: 20px 0;
    text-align: center;
    position: relative;
}

.divider span {
    background: #fff;
    padding: 0 10px;
    color: #888;
    font-size: 14px;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    z-index: -1;
}

.google-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.google-btn:hover {
    border-color: #bbb;
    background: #f9f9f9;
}

.google-btn img {
    display: block;
}
