body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.container {
    width: 100%;
    max-width: 460px;
}

.title {
    text-align: center;
    margin: 0 0 18px;
    font-size: 32px;
}

.subtitle {
    text-align: center;
    color: #6b7280;
    margin: 0 0 26px;
    font-size: 15px;
}

.card {
    background: white;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f7;
}

.row {
    margin-bottom: 18px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
}

input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background: #f9fafb;
    font-size: 15px;
    transition: 0.2s ease;
}

input:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.btn {
    padding: 13px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-align: center;
    flex: 1;
    font-size: 14px;
    transition: 0.2s ease;
}

.btn-secondary {
    background: #e5e7eb;
    color: #111827;
}

.btn-secondary:hover {
    background: #d1d5db;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.muted {
    color: #6b7280;
    text-align: center;
    margin-bottom: 0;
}

.muted + .muted {
    margin-top: 10px;
}

.muted-top {
    margin-top: 18px;
}

.muted a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.muted a:hover {
    text-decoration: underline;
}

.errorlist {
    color: #991b1b;
}

.error-box {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 14px;
}

.success-box {
    background: #dcfce7;
    color: #166534;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 14px;
}

.info-box {
    background: #e0f2fe;
    color: #075985;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 14px;
}
