 
    :root {
        --ayurved-primary: #2d5016;
        --ayurved-secondary: #8b7355;
        --ayurved-accent: #c9a961;
        --ayurved-light: #f4efe4;
        --ayurved-green: #4a7c59;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Lora', serif;
        min-height: 100vh;
        overflow-x: hidden;
    }

    /* Floating Animation */
    @keyframes float {

        0%,
        100% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(5deg);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.8;
            transform: scale(1.05);
        }
    }

    /* Main Container */
    .login-container {
        display: flex;
        min-height: 100vh;
        width: 100%;
    }

    /* Left Side - Ayurvedic Theme */
    .theme-side {
        flex: 1;
        background: linear-gradient(135deg, #1a3a1a 0%, #2d5016 50%, #4a7c59 100%);
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        overflow: hidden;
        animation: fadeInLeft 0.8s ease-out;
    }

    /* Pattern Overlay */
    .theme-side::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image:
            radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(139, 115, 85, 0.15) 0%, transparent 50%);
        pointer-events: none;
    }

    .theme-content {
        position: relative;
        z-index: 1;
        text-align: center;
        color: white;
        max-width: 500px;
    }

    .theme-logo {
        margin: 0 auto 30px;
        backdrop-filter: blur(10px);
        border-radius: 30px;
        padding: 25px;
        border: 4px solid rgba(201, 169, 97, 0.6);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        animation: pulse 3s ease-in-out infinite;
    }

    .theme-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


    .theme-title {
        font-family: 'Cinzel', serif;
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: white;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
        letter-spacing: 3px;
    }

    .theme-subtitle {
        font-size: 1.3rem;
        margin-bottom: 25px;
        color: #c9a961;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .theme-description {
        font-size: 1rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 40px;
    }

    .theme-icons {
        display: flex;
        justify-content: center;
        gap: 25px;
        margin-top: 30px;
        font-size: 3rem;
    }

    .theme-icons span {
        animation: float 3s ease-in-out infinite;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    }

    .theme-icons span:nth-child(2) {
        animation-delay: 0.5s;
    }

    .theme-icons span:nth-child(3) {
        animation-delay: 1s;
    }

    .theme-icons span:nth-child(4) {
        animation-delay: 1.5s;
    }

    .theme-quote {
        margin-top: 40px;
        padding: 25px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border-left: 4px solid #c9a961;
        font-style: italic;
        color: rgba(255, 255, 255, 0.95);
    }

    /* Right Side - Login Form */
    .form-side {
        flex: 1;
        background: linear-gradient(to bottom, #ffffff 0%, #faf8f5 100%);
        display: flex;
        justify-content: center;
        align-items: center;

        position: relative;
        animation: fadeInRight 0.8s ease-out;
    }

    .form-side::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, #2d5016, #c9a961, #8b7355, #2d5016);
    }

    .login-form-wrapper {
        width: 100%;
        max-width: 450px;
    }

    .form-header {
        text-align: center;

    }




    .form-title {
        font-family: 'Cinzel', serif;
        color: #2d5016;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }

    .form-subtitle {
        font-family: 'Lora', serif;
        color: #8b7355;
        font-size: 1rem;
        font-style: italic;
    }

    .login-form {
        background: white;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border: 2px solid #f4efe4;
    }

    .input__group {
        margin-bottom: 25px;
    }

    .input__group label {
        font-family: 'Lora', serif;
        color: #2d5016;
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .input__group label::before {
        content: '🍃';
        font-size: 1rem;
    }



    .overlay img {
        width: 22px;
        height: 22px;
        filter: sepia(100%) hue-rotate(70deg) saturate(200%);
    }

    .password-visibility {
        position: absolute;
        right: 50px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        opacity: 0.5;
        transition: opacity 0.3s;
    }

    .password-visibility:hover {
        opacity: 1;
    }

    .password-visibility img {
        width: 22px;
        height: 22px;
        filter: sepia(100%) hue-rotate(70deg) saturate(150%);
    }

    .remember-group {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;
    }

    .remember-group input[type="checkbox"] {
        width: 20px;
        height: 20px;
        border: 2px solid #c9a961;
        border-radius: 5px;
        cursor: pointer;
    }

    .remember-group label {
        color: #2d5016;
        font-size: 0.95rem;
        cursor: pointer;
        margin: 0;
    }

    .remember-group label::before {
        content: none;
    }

    .btn-ayurved {
        width: 100%;
        padding: 16px;
        background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
        border: none;
        border-radius: 12px;
        color: white;
        font-family: 'Cinzel', serif;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
        position: relative;
        overflow: hidden;
    }

    .btn-ayurved::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-ayurved:hover::before {
        width: 400px;
        height: 400px;
    }

    /* .btn-ayurved:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(45, 80, 22, 0.5);
    } */

    .btn-ayurved:active {
        transform: translateY(-1px);
    }

    .form-footer {
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 2px solid #f4efe4;
    }

    .form-footer-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .form-footer-icons span {
        animation: float 3s ease-in-out infinite;
    }

    .form-footer-icons span:nth-child(2) {
        animation-delay: 0.3s;
    }

    .form-footer-icons span:nth-child(3) {
        animation-delay: 0.6s;
    }

    .form-footer p {
        color: #8b7355;
        font-size: 0.9rem;
        margin: 0;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .theme-title {
            font-size: 1.8rem;
        }


        .theme-subtitle {
            font-size: 1.1rem;
        }

        .theme-logo {
            width: 220px;
        }
    }

    @media (max-width: 768px) {
        .login-container {
            flex-direction: column;
        }

        .theme-side {
            min-height: 40vh;
            padding: 40px 30px;
        }

        .theme-logo {
            width: 160px;
            padding: 20px;
        }

        .theme-title {
            font-size: 1.5rem;
        }

        .theme-title {
            font-size: 1.8rem;
        }

        .theme-subtitle {
            font-size: 1rem;
        }

        .theme-description {
            font-size: 0.9rem;
        }

        .theme-icons {
            font-size: 2rem;
            gap: 15px;
        }

        .theme-quote {
            padding: 15px;
            font-size: 0.9rem;
        }

        .form-side {
            padding: 30px 20px;
        }

        .login-form {
            padding: 30px 25px;
        }

        .form-title {
            font-size: 1.6rem;
        }

        .form-logo {
            width: 90px;
            height: 90px;
        }
    }

    @media (max-width: 480px) {
        .theme-side {
            padding: 30px 20px;
            min-height: 35vh;
        }

        .theme-title {
            font-size: 1.2rem;
        }

        .theme-subtitle {
            font-size: 0.9rem;
        }

        .theme-quote {
            display: none;
        }

        .login-form {
            padding: 25px 20px;
        }

        .form-title {
            font-size: 1.4rem;
        }

        .input-overlay input {
            font-size: 0.95rem;
        }

        .btn-ayurved {
            padding: 14px;
            font-size: 1rem;
        }
    }
 