/* Global Dark Background */
body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #1a1a1f, #0d0d10 80%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 200% 200%;
    animation: bgMove 8s infinite alternate;
}

@keyframes bgMove {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

/* GlassMorphism Box */
.glass {
    background: rgba(40, 40, 50, 0.55);
    box-shadow: 0 8px 25px rgba(255, 46, 210, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 46, 210, 0.25);
    border-radius: 16px;
    padding: 40px;
}

/* Login Box */
.login-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-box {
    width: 380px;
    text-align: center;
}

.login-box h1 {
    color: #FF2ED2;
    margin-bottom: 5px;
}

.subtitle {
    color: #ccc;
    margin-bottom: 25px;
}

/* Inputs */
.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    font-size: 14px;
    color: #ccc;
}

.input-group input {
    width: 100%;
    padding: 10px;
    margin-top: 4px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #111;
    color: #fff;
    font-size: 15px;
}

/* Login Button */
.btn-login {
    width: 100%;
    padding: 12px;
    background: #FF2ED2;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 17px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s;
    box-shadow: 0 0 10px rgba(255, 46, 210, 0.6);
}

.btn-login:hover {
    box-shadow: 0 0 20px rgba(255, 46, 210, 1);
    transform: translateY(-2px);
}

.error-msg {
    margin-top: 15px;
    color: #ff4a4a;
    font-weight: bold;
}
