/* LOGIN PAGE STYLING */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #0a0f24;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: white;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
}

.login-box h2 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 24px;
}

label {
    font-size: 14px;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    margin-bottom: 18px;
    border: none;
    border-radius: 10px;
    outline: none;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 14px;
}

input::placeholder {
    color: #ccc;
}

.btn-login {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: #0057ff;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 87, 255, 0.3);
}

.btn-login:hover {
    background: #003fcc;
    box-shadow: 0px 6px 18px rgba(0, 87, 255, 0.5);
}

.register-text {
    text-align: center;
    margin-top: 15px;
    color: #ddd;
}

.register-text a {
    color: #2e82ff;
    text-decoration: none;
    font-weight: 500;
}

.register-text a:hover {
    text-decoration: underline;
}

/* ERROR MESSAGE */
.error {
    background: rgba(255, 0, 0, 0.3);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
    color: #ffb3b3;
    font-size: 14px;
}
