/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

/* Background Circles */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 100px rgba(255, 255, 255, 0.2);
    animation: float 8s infinite ease-in-out;
}

.circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -50px;
    left: 30%;
    animation-delay: 0s;
}

.circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 25%;
    animation-delay: 2s;
}

/* Glassmorphism Container */
.login-container {
    background: rgba(255, 255, 255, 0.1);
    
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    animation: fadeIn 1.5s ease-in-out;
}

.logo img {
    width: 60%;
    height: auto;
    animation: glow 2s infinite alternate;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    font-size: 14px;
    color: #f0f0f0;
    margin-bottom: 5px;
    display: block;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

button[type="submit"] {
    background: linear-gradient(135deg,#ca9100, #5b4407);
    margin-top: 20px;
    color: white;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        filter: brightness(1);
    }
    to {
        filter: brightness(1.3);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .login-container {
        padding: 20px 15px;
    }

    h1 {
        font-size: 22px;
    }

    input[type="text"], input[type="password"] {
        font-size: 16px;
    }

    button[type="submit"] {
        font-size: 14px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .login-container {
        width: 90%;
        padding: 30px 20px;
    }

    .logo img {
        width: 70%;
    }

    .form-group label {
        font-size: 12px;
    }

    input[type="text"], input[type="password"] {
        font-size: 13px;
        padding: 10px;
    }

    button[type="submit"] {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .login-container {
        width: 95%;
        padding: 20px 15px;
    }

    .logo img {
        width: 60%;
    }

    .form-group label {
        font-size: 11px;
    }

    input[type="text"], input[type="password"] {
        font-size: 12px;
        padding: 8px;
    }

    button[type="submit"] {
        font-size: 12px;
        padding: 8px;
    }

    .background .circle:nth-child(1) {
        width: 200px;
        height: 200px;
        top: -30px;
        left: 20%;
    }

    .background .circle:nth-child(2) {
        width: 150px;
        height: 150px;
        bottom: -30px;
        right: 20%;
    }
}
input::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Adjust the opacity as needed */
}
/* Footer Styles */
footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: white;
}

    footer ul {
        list-style-type: none;
        padding: 0;
    }

        footer ul li {
            display: inline-block;
            margin: 0 10px;
        }

            footer ul li a {
                color: white;
                text-decoration: none;
                font-size: 14px;
                transition: color 0.3s ease;
            }

                footer ul li a:hover {
                    color: #ca9100;
                }
