
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.login-container {
    width: 350px;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: white;
}

.login-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 14px;
}

.input-group input:focus {
    box-shadow: 0 0 0 2px #00c6ff;
}

.login-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: #00c6ff;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.login-btn:hover {
    background: #0072ff;
    transform: translateY(-2px);
}

.extra-links {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
}

.extra-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.extra-links a:hover {
    opacity: 1;
}

@media (max-width: 400px) {
    .login-container {
        width: 90%;
        padding: 25px;
    }
}
