/* Basic styling for the team Registration Form page. */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #ecfeff 0%, #f8fafc 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: 560px;
    background: #ffffff;
    border: 1px solid #cfe8ea;
    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: 2rem;
}

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

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

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;
}

.inline-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

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

button:hover {
    background: #115e59;
}

.secondary-button {
    margin-top: 0;
    white-space: nowrap;
    background: #334155;
}

.secondary-button:hover {
    background: #1e293b;
}

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