 :root {
            --primary: #7ac121;
            --primary-dark: #5e9a1b;
            --light-bg: #EFF6EF;
            --accent: #ff6584;
            --light: #f8f9fa;
            --dark: #212529;
            --text-dark: #2d3748;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-bg);
            min-height: 100vh;
            overflow-x: hidden;
            color: var(--text-dark);
        }
        
        .auth-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .auth-image {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .auth-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            transform: rotate(30deg);
        }
        
        .auth-form {
            padding: 3rem;
        }
        
        .auth-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            position: relative;
            display: inline-block;
        }
        
        .auth-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .form-control {
            height: 50px;
            border-radius: 10px;
            border: 1px solid #e0e0e0;
            padding-left: 20px;
            transition: all 0.3s;
            margin-bottom: 1rem;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(122, 193, 33, 0.25);
        }
        
        .btn-auth {
            background-color: var(--primary);
            border: none;
            color: white;
            height: 50px;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s;
            letter-spacing: 0.5px;
        }
        
        .btn-auth:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(122, 193, 33, 0.3);
        }
        
        .auth-switch {
            color: var(--primary);
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .auth-switch:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        
        .social-auth .btn {
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
        }
        
        .social-auth .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
        }
        
        .social-auth .btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .btn-google {
            background: white;
            color: #4285F4;
        }
        
        .btn-apple {
            background: white;
            color: var(--dark);
        }
        
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }
        
        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
        }
        
        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--primary);
            top: -100px;
            right: -100px;
        }
        
        .shape-2 {
            width: 200px;
            height: 200px;
            background: var(--accent);
            bottom: -50px;
            left: -50px;
        }
        
        .shape-3 {
            width: 150px;
            height: 150px;
            background: var(--primary-dark);
            top: 50%;
            left: 30%;
        }
        
        .auth-image-content {
            color: white;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .auth-image-content h2 {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .auth-image-content p {
            opacity: 0.9;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }
        
        .typed-text {
            min-height: 2.5rem;
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .auth-image-content img {
            max-width: 80%;
            
        }
        
        .form-check-input:checked {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        
        .form-check-label a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .form-check-label a:hover {
            text-decoration: underline;
        }
        
        .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #a0aec0;
        }
        
        .password-toggle:hover {
            color: var(--primary);
        }
        
        .password-input-container {
            position: relative;
        }
        
        @media (max-width: 992px) {
            .auth-image {
                height: 200px;
                padding: 1.5rem;
            }
            
            .auth-form {
                padding: 2rem;
            }
            
            .auth-image-content h2 {
                font-size: 1.5rem;
            }
            
            .auth-image-content p {
                font-size: 1rem;
                margin-bottom: 1rem;
            }
            
            .typed-text {
                margin-bottom: 1rem;
            }
        }
        
        /* Floating animation for the image */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .floating-img {
            animation: float 6s ease-in-out infinite;
        }
        
        /* Pulse animation for CTA */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }
        
        .btn-pulse {
            animation: pulse 2s ease-in-out infinite;
        }

        /* Back to Home Button Styles */
.back-home-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #7ac121;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(122, 193, 33, 0.3);
}

.back-home-btn:hover {
    background-color: #7ac121;
    color: white;
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(122, 193, 33, 0.3);
}

.back-home-btn i {
    transition: transform 0.3s ease;
}

.back-home-btn:hover i {
    transform: translateX(-3px);
}

/* For mobile responsiveness */
@media (max-width: 992px) {
    .back-home-btn {
        top: 10px;
        left: 10px;
        font-size: 14px;
        padding: 6px 12px;
    }
}