@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    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, #ff9a9e, #fad0c4);
}

/* Login Box */
.login-container {
    width: 400px;
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.8);}
    to {opacity: 1; transform: scale(1);}
}

.login-container h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: bold;
    color: #fff;
}

.input-group input {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Button */
.login-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff512f, #dd2476);
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.3s;
}

.login-btn:hover {
    background: linear-gradient(135deg, #dd2476, #ff512f);
    transform: scale(1.05);
}

/* Links */
.links {
    margin-top: 15px;
}

.links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 450px) {
    .login-container {
        width: 90%;
        padding: 20px;
    }
}
