﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #4361ee;
    --primary-dark: #3a56d4;
    --secondary: #7209b7;
    --secondary-dark: #6008a0;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-light: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

/* Particles background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Main container styles */
.auth-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    z-index: 1;
}

.auth-card {
    display: flex;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 600px;
}

/* Left side styles */
.auth-left {
    flex: 1;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(114, 9, 183, 0.05));
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.auth-left-content {
    text-align: center;
    z-index: 2;
}

.auth-logo {
    margin-bottom: 20px;
}

    .auth-logo img {
        height: 50px;
    }

.auth-left h2 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.auth-left p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 30px;
}

.auth-illustration {
    max-width: 300px;
    margin: 0 auto;
}

    .auth-illustration img {
        width: 100%;
        height: auto;
        animation: float 6s ease-in-out infinite;
    }

/* Right side styles */
.auth-right {
    width: 450px;
    padding: 40px;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.mobile-logo {
    display: none;
    height: 40px;
    margin-bottom: 20px;
}

.auth-form-header h1 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.auth-form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Form styles */
.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--text-primary);
        font-weight: 500;
        font-size: 0.9rem;
    }

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 12px 15px 12px 40px;
    font-size: 0.95rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

    .input-wrapper input:focus,
    .input-wrapper select:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
    }

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

    .toggle-password:hover {
        color: var(--primary);
    }

.forgot-password {
    text-align: right;
    margin-bottom: 25px;
}

    .forgot-password a {
        color: var(--primary);
        text-decoration: none;
        font-size: 0.85rem;
        transition: var(--transition);
    }

        .forgot-password a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
.back-to-login {
    text-align: right;
    margin-bottom: 25px;
}

    .back-to-login a {
        color: var(--primary);
        text-decoration: none;
        font-size: 0.85rem;
        transition: var(--transition);
    }

        .back-to-login a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

.auth-button {
    width: 100%;
    padding: 12px 15px;
    /*background: linear-gradient(135deg, var(--primary), var(--secondary));*/
    background: #4361ee;
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

    .auth-button:hover {
        /*background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));*/
        background: #4361ee;
        box-shadow: var(--shadow-md);
        transform: translateY(-1px);
    }

    .auth-button:disabled {
        background: #cbd5e1;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

/* OTP styles */
.notification-box {
    background-color: rgba(67, 97, 238, 0.05);
    border: 1px solid rgba(67, 97, 238, 0.1);
    border-radius: var(--radius-md);
    padding: 15px;
    margin-bottom: 25px;
    text-align: center;
}

    .notification-box i {
        font-size: 24px;
        margin-bottom: 10px;
        color: var(--primary);
    }

    .notification-box p {
        margin: 5px 0;
        color: var(--text-secondary);
    }

.masked-info {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.otp-input-group {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 15px 0;
}

.otp-part {
    width: 45px !important;
    height: 45px;
    font-size: 1.2rem;
    text-align: center;
    padding: 0 !important;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--bg-light);
}

.status-message {
    margin: 10px 0;
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    display: none;
}

    .status-message.error {
        background-color: #fee2e2;
        color: #dc2626;
        border: 1px solid #fecaca;
    }

    .status-message.success {
        background-color: #dcfce7;
        color: #16a34a;
        border: 1px solid #bbf7d0;
    }

.resend-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.resend-wrapper {
    display: flex;
    align-items: center;
}

.resend-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

    .resend-btn:not(:disabled):hover {
        background: rgba(67, 97, 238, 0.1);
    }

    .resend-btn:disabled {
        color: #94a3b8;
        cursor: not-allowed;
    }

.timer {
    min-width: 30px;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

/* Password change styles */
.password-requirements {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

    .password-requirements p {
        margin-bottom: 5px;
        font-weight: 500;
    }

    .password-requirements ul {
        list-style: none;
        padding-left: 5px;
    }

    .password-requirements li {
        margin-bottom: 3px;
        display: flex;
        align-items: center;
    }

        .password-requirements li i {
            font-size: 0.6rem;
            margin-right: 8px;
            color: #94a3b8;
        }

        .password-requirements li.valid i {
            color: #16a34a;
        }

.password-match {
    margin-top: 5px;
    font-size: 0.85rem;
    height: 20px;
}

    .password-match.match {
        color: #16a34a;
    }

    .password-match.mismatch {
        color: #dc2626;
    }

/* Profile creation styles */
.profile-picture-upload {
    margin-bottom: 25px;
}

.profile-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.profile-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

    .profile-preview i {
        font-size: 2rem;
        color: var(--text-secondary);
    }

    .profile-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.upload-button-wrapper {
    position: relative;
}

.upload-button {
    padding: 8px 15px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .upload-button:hover {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .auth-card {
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto;
    }

    .auth-left {
        padding: 30px;
    }

    .auth-right {
        width: 100%;
        padding: 30px;
    }

    .auth-illustration {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .auth-left {
        display: none;
    }

    /*.mobile-logo {
        display: block;
    }*/    

    .auth-card {
        min-height: auto;   
    }
    .auth-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
        margin: 0 auto 20px auto; /* center horizontally */
        height: 40px;
    }

    .auth-form-header {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .auth-right {
        padding: 20px;
    }

    .auth-form-header h1 {
        font-size: 1.5rem;
    }

    .otp-input-group {
        gap: 5px;
    }

    .otp-part {
        width: 40px !important;
        height: 40px;
    }
}
/*@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap');

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear,
input[type="password"]::-webkit-credentials-auto-fill-button {
    display: none !important;
    visibility: hidden !important;
}


#password::-webkit-credentials-auto-fill-button {
    display: none;*/ /* Hide unwanted auto-fill button */
/*}

input[type="password"]::before {
    content: none !important;*/ /* Remove extra eye icon */
/*}
.password-container input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1em;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #f6f8ff 0%, #e5eeff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
}



.background-elements {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(147, 197, 253, 0.3), rgba(196, 181, 253, 0.3));
    border-radius: 50%;
    filter: blur(5px);
}

.shape1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation: float 8s infinite;
}

.shape2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation: float 10s infinite reverse;
}

.book-element {
    position: absolute;
    font-size: 24px;
    color: rgba(99, 102, 241, 0.2);
    animation: floatBook 6s infinite;
    z-index: 1;
    user-select:none;
    pointer-events:none;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 600px;
    display: flex;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

.left-section {
    flex: 1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.left-content {
    text-align: center;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.illustration {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 0;
    padding-bottom: 100%;
    margin: 0 auto 30px;
}

    .illustration img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        animation: float 6s infinite;
    }

.tagline {
    font-size: clamp(1.5em, 4vw, 1.8em);
    color: #4338ca;
    font-weight: 600;
    margin-bottom: 15px;
}

.sub-tagline {
    color: #6366f1;
    font-size: clamp(0.9em, 3vw, 1.1em);*/ /* Updated */
    /*line-height: 1.6;
}*/

/* Right Section - Login Form */
/*.right-section {
    width: 100%;
    max-width: 400px;*/ /* Updated */
    /*padding: clamp(20px, 5vw, 60px);*/ /* Updated */
    /*background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-header {
    text-align: center;
    margin-bottom: clamp(20px, 5vw, 40px);*/ /* Updated */
/*}

    .login-header h1 {
        color: #1e1b4b;
        font-size: clamp(1.5em, 4vw, 2em);*/ /* Updated */
        /*font-weight: 600;
        margin-bottom: 10px;
    }

    .login-header p {
        color: #6b7280;
        font-size: clamp(0.9em, 3vw, 1.1em);*/ /* Updated */
    /*}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #4338ca;
        font-weight: 500;
    }

.input-group {
    position: relative;
}

    .input-group input {
        width: 100%;
        padding: 15px 20px;
        font-size: 1em;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid rgba(99, 102, 241, 0.2);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

        .input-group input:focus {
            outline: none;
            border-color: #6366f1;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
        }

    .input-group i {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #6366f1;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .input-group i:hover {
            color: #4338ca;
        }

.forgot-password {
    text-align: right;
    margin-bottom: 30px;
}

    .forgot-password a {
        color: #6366f1;
        text-decoration: none;
        font-size: 0.9em;
        transition: all 0.3s ease;
    }

        .forgot-password a:hover {
            color: #4338ca;
            text-decoration: underline;
        }

.login-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #6366f1, #4338ca);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: clamp(1em, 3vw, 1.1em);*/ /* Updated */
    /*font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.2);
}

    .login-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 8px -1px rgba(99, 102, 241, 0.3);
    }

.signup-link {
    text-align: center;
    margin-top: 25px;
    color: #6b7280;
    font-size: clamp(0.8em, 3vw, 1em);*/ /* Updated */
/*}

    .signup-link a {
        color: #6366f1;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .signup-link a:hover {
            color: #4338ca;
            text-decoration: underline;
        }*/

/* Animations */
/*@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatBook {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -20px) rotate(5deg);
    }
}

@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        min-height: auto;*/ /* Updated */
        /*margin: 20px;*/ /* Updated */
    /*}

    .left-section {
        padding: clamp(20px, 5vw, 40px);*/ /* Updated */
    /*}

    .right-section {
        max-width: 100%;*/ /* Updated */
    /*}

    .illustration {
        max-width: 200px;
        padding-bottom: 200px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;*/ /* Updated */
    /*}

    .container {
        margin: 10px;*/ /* Updated */
        /*border-radius: 15px;*/ /* Updated */
    /*}

    .left-section {
        padding: 30px 20px;*/ /* Updated */
    /*}

    .right-section {
        padding: 30px 20px;*/ /* Updated */
    /*}

    .illustration {
        display: none;*/ /* Hide logo on mobile */
    /*}*/
    /* Adjust spacing when logo is hidden */
    /*.left-content {
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 0;*/ /* Updated */
        /*border-radius: 0;*/ /* Updated */
    /*}*/
    /* .illustration {
                                        max-width: 150px;
                                        padding-bottom: 150px;
                                    } */
    /* Additional adjustments for smaller screens */
    /*.left-section {
        padding: 20px 15px;
    }

    .form-group {
        margin-bottom: 20px;*/ /* Updated */
    /*}

    .input-group input {
        padding: 12px 15px;*/ /* Updated */
    /*}
}*/

/* Prevent overflow on very small screens */
/*@media (max-height: 700px) {
    .container {
        margin: 0;*/ /* Updated */
        /*border-radius: 0;*/ /* Updated */
        /*min-height: 100vh;*/ /* Updated */
    /*}*/
    /* .illustration {
                                        max-width: 120px;
                                        padding-bottom: 120px;
                                    } */
/*}

.input-group input,
.form-control {
    width: 100%;
    padding: 15px 20px;
    font-size: 1em;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    appearance: none;*/ /* Removes default dropdown styling in some browsers */
/*}*/

/* To add dropdown icon spacing */
/*.form-control {
    position: relative;
    padding-right: 40px;*/ /* Space for dropdown arrow */
/*}*/

    /* Optional: Style dropdown arrow */
    /*.form-control::after {
        content: "\f078";*/ /* FontAwesome downward arrow */
        /*font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }*/
/* Add these styles to your existing CSS */
/* Update/add these styles */
/*.otp-input-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.otp-part {
    width: 50px !important;
    height: 50px;
    font-size: 20px;
    text-align: center;
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

    .otp-part:focus {
        outline: none;
        border-color: #6366f1;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    }

.email-notification {
    background-color: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

    .email-notification i {
        font-size: 24px;
        margin-bottom: 10px;
        color: #6366f1;
    }

    .email-notification p {
        margin: 5px 0;
        color: #6b7280;
    }*/

/*.masked-email {
    font-weight: 600;
    color: #4338ca;
    font-size: 16px;
    margin-top: 5px;
}*/
/*.masked-number {
    font-weight: 600;
    color: #4338ca;
    font-size: 16px;
    margin-top: 5px;
}

.resend-btn {
    background: rgba(99, 102, 241, 0.1);*/
    /*background: none;*/
    /*border: none;
    padding: 8px 16px;
    color: #6366f1;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}*/

    /*.resend-btn:not(:disabled):hover {
        background: rgba(99, 102, 241, 0.1);
    }*/

    /*.resend-btn:disabled {
        color: #9ca3af;
        cursor: not-allowed;
    }

.timer {
    min-width: 40px;
    color: #6b7280;
    font-weight: 500;
}*/
/*.otp-input-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.otp-input {
    width: 50px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

    .otp-input:focus {
        outline: none;
        border-color: #6366f1;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    }*/

/*.status-message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    display: none;
    text-align: center;
}

    .status-message.error {
        background-color: #fee2e2;
        color: #dc2626;
        border: 1px solid #fecaca;
    }

    .status-message.success {
        background-color: #dcfce7;
        color: #16a34a;
        border: 1px solid #bbf7d0;
    }

.resend-container {
    margin-top: 20px;
    text-align: center;
    color: #6b7280;
}*/

/*.resend-button {*/
    /* background: none;
    border: none;
    color: #6366f1;
    cursor: pointer;
    padding: 5px 10px;
    font-size: 14px;*/
    /*width: 100%;*/
    /*padding: 5px;
    background:gray;*/
    /*background: linear-gradient(135deg, #6366f1, #4338ca);*/
    /*border: none;
    border-radius: 12px;
    color: #fff;
    font-size: clamp(1em, 3vw, 1.1em);*/ /* Updated */
    /*font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.2);
}

    .resend-button:disabled {
        color: #9ca3af;
        cursor: not-allowed;
    }

.timer {
    color: #6b7280;
    font-size: 14px;
    min-width: 30px;
    text-align: right;
}

.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}*/
/*.book-element {
    position: absolute;
    font-size: 24px;
    z-index: 2;*/ /* Ensure books are above background but below the card */
/*}

.container {
    position: relative;
    z-index: 3;*/ /* Ensure the card is above floating books */
/*}*/
/* Add to your existing CSS */
/*.email-notification {
    background-color: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
    color: #4338ca;
}

.email-notification i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #6366f1;
}

.email-notification p {
    margin: 5px 0;
    font-size: 14px;
    color: #6b7280;
}

.masked-email {
    font-weight: 600 !important;
    color: #4338ca !important;
    font-size: 16px !important;
}*/

/* Animation for email sent notification */
/*@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.email-notification {
    animation: slideDown 0.3s ease-out;
}*/

/* Success checkmark animation */
/*.success-checkmark {
    color: #16a34a;
    margin-right: 8px;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.success-checkmark i {
    animation: checkmark 0.3s ease-out forwards;
}*/