
        body {
            font-family: 'Inter', sans-serif; 
            background-color: #f8faff; 
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh; 
            margin: 0;
            padding: 20px; 
            box-sizing: border-box; 
            background-image: url(background.jpg);
            background-size: cover ;
        }


        .login-container {
            background-color: #e0f2f782; 
            padding: 35px 40px;
            border-radius: 15px; 
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); 
            width: 100%;
            max-width: 450px; 
            text-align: center;
            box-sizing: border-box; 
        }

        
        h2 {
            color: #333;
            margin-bottom: 30px;
            font-size: 2em; 
            font-weight: 600;
        }


        .input-group {
            margin-bottom: 20px;
            text-align: left; 
        }

        .input-group label {
            display: block; 
            margin-bottom: 8px;
            color: #555;
            font-weight: 500; 
            font-size: 0.95em;
        }

       
        .input-group input[type="text"],
        .input-group input[type="password"],
        .input-group input[type="email"] {
            width: 100%;
            padding: 12px 15px; 
            border: 1px solid #b3e0f2; 
            border-radius: 8px; 
            font-size: 1em;
            color: #333;
            box-sizing: border-box; 
            transition: border-color 0.3s ease, box-shadow 0.3s ease; 
        }


        .input-group input[type="text"]:focus,
        .input-group input[type="password"]:focus,
        .input-group input[type="email"]:focus {
            border-color: #03a9f4; 
            outline: none;
            box-shadow: 0 0 8px rgba(3, 169, 244, 0.3); 
        }

       
        button[type="submit"] {
            background-color: #03a9f4; 
            color: white;
            padding: 15px 25px;
            border: none;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease; 
            width: 100%; 
            margin-top: 25px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
        }

        button[type="submit"]:hover {
            background-color: #0288d1; 
            transform: translateY(-2px);
        }

        button[type="submit"]:active {
            transform: translateY(0); 
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .google-btn {
            background-color: #ffffff; 
            border: 1px solid #ddd; 
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 25px;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
            width: 100%;
            box-sizing: border-box;
        }

        .google-btn:hover {
            background-color: #f5f5f5; 
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .google-btn img {
            margin-right: 12px; 
            width: 24px; 
            height: 24px;
        }

        .google-btn span {
            color: #555; 
            font-size: 1em;
            font-weight: 500;
        }

        
        @media (max-width: 600px) {
            .login-container {
                padding: 25px 25px; 
                border-radius: 10px;
            }

            h2 {
                font-size: 1.8em; 
                margin-bottom: 20px;
            }

            .input-group input {
                padding: 10px 12px; 
                font-size: 0.95em;
            }

            button[type="submit"], .google-btn {
                padding: 12px 20px; 
                font-size: 1em;
            }
        }
    