/* --- Global Styles & Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #111827;
    color: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
}

/* --- Login Card Container --- */
.login-card {
    width: 100%;
    max-width: 28rem;
    background-color: #1F2937;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
    animation: fadeInAnimation 0.7s ease-in-out;
}

.login-title {
    font-family: 'Special Elite', cursive;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    /* The text-shadow property was removed to eliminate the glow effect */
}

.login-subtitle {
    text-align: center;
    color: #9CA3AF;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Form Styles --- */
.login-form .form-group + .form-group {
    margin-top: 1.5rem;
}

.form-group label {
    display: block;
    color: #D1D5DB;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background-color: #374151;
    color: #F3F4F6;
    border: 2px solid transparent;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-input::placeholder {
    color: #6B7280;
}

.form-input:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.5);
}

.submit-button {
    width: 100%;
    padding: 0.75rem 0;
    margin-top: 1.5rem;
    background-color: #7C3AED;
    color: #FFFFFF;
    font-weight: 700;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.submit-button:hover {
    background-color: #6D28D9;
}

/* --- Keyframe Animations --- */
/* The @keyframes glow rule was removed */

@keyframes fadeInAnimation {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

