/* login.css — clean login UI */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f766e 100%);
    padding: 20px;
}

.login-wrap { width: 100%; max-width: 400px; }

.login-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.brand { text-align: center; margin-bottom: 6px; }

.brand-logo {
    width: 64px; height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #0f766e);
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand h1 { font-size: 20px; color: #1e293b; }
.brand p  { font-size: 13px; color: #64748b; margin-top: 4px; }

.alert {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
}

label { display: flex; flex-direction: column; gap: 6px; }
label span { font-size: 13px; font-weight: 600; color: #334155; }

input {
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color .15s, box-shadow .15s;
}
input:focus {
    outline: none;
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

button {
    margin-top: 6px;
    padding: 13px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #1e3a8a, #0f766e);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .15s;
}
button:hover { opacity: .92; }

.foot { text-align: center; font-size: 12px; color: #94a3b8; margin-top: 4px; }
