@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    background: linear-gradient(135deg, #0f0f10, #1a1b1e);
    color: #e5e5e5;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    width: 100%;
    max-width: 380px;
    background-color: #1e1f23;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #2a2a2d;
    animation: fadeIn 0.6s ease;
}

.login-form h1 {
    text-align: center;
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    color: #b0b0b0;
    font-weight: 500;
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: none;
    border-radius: 10px;
    background-color: #2a2b31;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.login-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #4f8cff;
}

.login-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #4f8cff, #6b66ff);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-form button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px #4f8cff88;
}

.error {
    background-color: #ff4747;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
