* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #3b2e7e;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 380px;
    padding: 1rem;
}

.login-card {
    background: #fff;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    text-align: center;
}

h1 {
    color: #3b2e7e;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.login-subtitle {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 1.8rem;
}

.form-field {
    text-align: left;
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #3b2e7e;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 2px solid #d0cde2;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.15s;
    background: #fff;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #3b2e7e;
}

.login-btn {
    width: 100%;
    padding: 0.7rem;
    background: #3b2e7e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.15s;
}

.login-btn:hover {
    background: #2d2363;
}

.login-error {
    color: #dc2626;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.75rem;
    min-height: 1.2rem;
}

.forgot-link {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.75rem;
    text-decoration: none;
}
.forgot-link:hover { color: #3b2e7e; }

.forgot-msg {
    text-align: center;
    font-size: 0.8rem;
    color: #3b2e7e;
    background: #f0eef9;
    padding: 0.6rem 0.75rem;
    border-radius: 4px;
    margin-top: 0.5rem;
    font-weight: 500;
}
