/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Background */
body {
    height: 100vh;
    background: linear-gradient(135deg, #1d2671, #c33764);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glass Effect Box */
.login-box {
    width: 360px;
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    text-align: center;
    color: white;
    animation: float 3s ease-in-out infinite;
}


/* Heading */
.login-box h2 {
    margin-bottom: 25px;
    font-weight: 600;
}

/* Input Fields */
.login-box input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 10px;
    outline: none;
    background: rgba(255,255,255,0.2);
    color: white;
}

.login-box input::placeholder {
    color: #eee;
}

/* Button */
.login-box button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff512f, #dd2476);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.login-box button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* Error */
.error {
    color: #ffb3b3;
    margin-bottom: 10px;
}

/* Extra Glow Circle Background */
body::before, body::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

body::before {
    top: 10%;
    left: 10%;
}

body::after {
    bottom: 10%;
    right: 10%;
}