:root {
    --brand: #dc2626;
    --brand-dark: #b91c1c;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    background: #f5f5f5;
    color: #1f2933;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.login-card {
    width: min(420px, 100%);
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    align-self: center;
}

h1 {
    margin: 6px 0 2px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1f2933;
}

label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #4b5563;
    margin: 0 0 6px;
}

#login-form {
    margin-top: 8px;
}

.driver-select {
    width: 100%;
}

#login-form .select2-container {
    width: 100% !important;
    margin-bottom: 12px;
}

.select2-container--default .select2-selection--single {
    height: 44px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 6px 10px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 30px;
    color: #111827;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    right: 8px;
}

input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    color: #111827;
    margin-bottom: 12px;
}

input[type="password"]:focus,
.select2-container--default .select2-selection--single:focus {
    outline: 2px solid var(--brand);
    outline-offset: 1px;
}

.btn-login {
    background: var(--brand);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
    width: 100%;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-login:hover {
    background: var(--brand-dark);
}

.btn-login:disabled {
    background: #fca5a5;
    cursor: not-allowed;
}

.form-message {
    min-height: 18px;
    margin: 6px 0 0;
    font-size: 14px;
    color: #b91c1c;
    text-align: center;
}

.form-message[data-state="success"] {
    color: #15803d;
}
