
        /* Overlay Effect */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        /* Form Container */
        .form-container {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 30px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            text-align: center;
            transition: 0.5s ease-in-out;
        }

        /* Profile Image */
        .profile-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid rgba(255, 255, 255, 0.5);
            margin-bottom: 10px;
        }

        .form-container h2 {
            color: white;
            margin-bottom: 10px;
        }

        .input-group {
    position: relative;
    margin: 15px 0;
    width: 100%;
}

.input-group input {
    width: 100%;
    padding: 12px 12px 12px 40px; /* Added left padding for icon */
    border: none;
    outline: none;
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transition: 0.3s;
    box-sizing: border-box; /* Ensures padding is included in width */
}

.input-group input:focus {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1; /* Ensures consistent opacity across browsers */
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none; /* Prevents icon from interfering with input */
}

/* Adjustments for better mobile responsiveness */
@media (max-width: 480px) {
    .input-group {
        margin: 12px 0;
    }
    
    .input-group input {
        padding: 10px 10px 10px 35px;
        font-size: 14px;
    }
    
    .input-group i {
        left: 12px;
        font-size: 14px;
    }
}

        .button1 {
            width: 48%;
            padding: 12px;
            border: none;
            outline: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            display: inline-block;
        }

        .button2 {
            width: 48%;
            padding: 12px;
            border: none;
            outline: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            display: inline-block;
            background: #880000;
            color: white;
        }

        .button1:hover {
            background: #000000;
        }

        .button1 {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .button2:hover {
            background: white;
            color: darkblue;
        }

        .hidden {
            display: none;
        }

        .forgot-password {
            margin-top: 10px;
            color: white;
            font-size: 14px;
            display: block;
            text-decoration: none;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        .copyright {
            margin-top: 15px;
            color: white;
            font-size: 12px;
        }

        /* Responsive */
        @media screen and (max-width: 500px) {
            .form-container {
                width: 90%;
            }
            .btn {
                width: 100%;
                margin-top: 5px;
            }
        }
