/* Basic styling for the Entry Form page. */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #eef4ff 0%, #f8fbff 100%);
    color: #1f2937;
}

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

.form-card {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border: 1px solid #dbe5f0;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    padding: 28px;
}

.form-card h1 {
    margin: 0 0 8px;
    font-size: 1.9rem;
}

.form-subtitle {
    margin: 0 0 24px;
    color: #64748b;
}

.app-form {
    display: grid;
    gap: 14px;
}

.status-message {
    margin: -4px 0 4px;
    min-height: 20px;
    color: #475569;
    font-size: 0.95rem;
}

label {
    font-weight: 600;
    font-size: 0.95rem;
}

input,
select,
button {
    font: inherit;
}

input,
select {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
}

button {
    margin-top: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    background: #2563eb;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

button:hover {
    background: #1d4ed8;
}
