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

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f3f3f3;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-left: 4px solid rgba(0, 0, 139);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
    padding: 28px;
    box-sizing: border-box;
}

.auth-logo {
    display: block;
    width: 140px;
    margin: 0 auto 18px auto;
}

.auth-title {
    margin: 0 0 8px 0;
    font-size: 1.35rem;
    color: rgba(0, 0, 139);
    text-align: center;
}

.auth-subtitle {
    margin: 0 0 22px 0;
    color: #64748b;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.4;
}

.auth-field {
    margin-bottom: 14px;
}

.auth-field label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.auth-field input {
    width: 100%;
    height: 38px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    padding: 6px 10px;
    box-sizing: border-box;
    font: inherit;
}

.auth-button {
    width: 100%;
    background-color: rgba(0, 0, 139);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 14px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
}

.auth-button:hover {
    background-color: rgb(1, 1, 206);
}

.auth-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
    font-size: 0.9rem;
}

.auth-links a {
    color: rgba(0, 0, 139);
    text-decoration: none;
    font-weight: 600;
}

.auth-message {
    min-height: 20px;
    margin-top: 14px;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

.auth-message.error {
    color: #dc2626;
}

.auth-message.success {
    color: #047857;
}
