 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            display: flex;
            min-height: 100vh;
            background-color: #f5f5f5;
        }
        .page_section{
            display: flex;
            justify-content: center;
            margin-left: auto;
            margin-right: auto;
            gap: 100px;
            margin-top: 38px;
        }
        @media (max-width: 1200px) {
            .page_section {
            display: flex;
            flex-direction: column;
            }
            
        }
        /* Left section image styling */
        .left-section {
            /* Keep existing properties */
            justify-content: center; /* Change back to center for better image positioning */
        }

        .full-image {
            width: 80%; /* Adjust width as needed */
            max-height: 70vh; /* Limit height */
            margin: 0 auto; /* Center horizontally */
        }

        .full-image img {
            margin: 20px;
            width: 100%;
            height: auto;
            object-fit: contain; /* Change from cover to contain */
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        }

        /* Right section logo styling */
        .login-container {
            position: relative; /* For logo positioning */
        }

        .login-container .logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px; /* Center and add space below */
            display: block;
            border-radius: 50%;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .login-container .logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .right-section {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }
        
        .login-container {
            width: 100%;
            max-width: 400px;
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .login-container h2 {
            color: #333;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus {
            border-color: #6e8efb;
            outline: none;
        }
        .right-section a{
            text-decoration: none;
        }
        .btn {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .btn-primary {
            background-color: #6e8efb;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #5a7df4;
        }
        
        .btn-google {
            background-color: white;
            color: #555;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .btn-google:hover {
            background-color: #f5f5f5;
        }
        
        .google-icon {
            background: linear-gradient(90deg, 
                        #4285F4 0%,    /* Blue */
                        #4285F4 25%, 
                        #34A853 25%,   /* Green */
                        #34A853 50%, 
                        #FBBC05 50%,   /* Yellow */
                        #FBBC05 75%, 
                        #EA4335 75%,   /* Red */
                        #EA4335 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .otp-section {
            display: none;
            margin-top: 20px;
        }
        
        .message {
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .error {
            background-color: #ffebee;
            color: #f44336;
        }
        
        .success {
            background-color: #e8f5e9;
            color: #4caf50;
        }
        
        @media (max-width: 768px) {
            body {
                flex-direction: column;
            }
            
            .left-section, .right-section {
                flex: none;
                width: 100%;
            }
            
            .left-section {
                padding: 30px 20px;
            }
            
            .right-section {
                padding: 30px 20px;
            }
        }