
.container
{
    max-width: 720px;
    margin: calc(var(--header-height, 60px) + 2rem) auto 3rem;
    background: #ffffff;
    padding: 2.75rem;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: #1f2937;
}

.page-title
{
    margin-bottom: 2rem;
    font-size: 2.1rem;
    font-weight: 700;
    text-align: center;
    color: #1e3c72;
}

form
{
    display: flex;
    flex-direction: column;
}

label
{
    margin-top: 1.3rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #374151;
}

input,
select,
textarea
{
    width: 100%;
    padding: 0.75rem 0.85rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #fafafa;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

input:focus,
select:focus,
textarea:focus
{
    background: #ffffff;
    border-color: #1e3c72;
    box-shadow: 0 0 0 3px rgba(30,60,114,0.18);
    outline: none;
}

select
{
    cursor: pointer;
}

textarea
{
    min-height: 150px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #9ca3af;
}

form button
{
    margin-top: 2.2rem;
    padding: 0.85rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    color: #ffffff;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.3s ease;
}

form button:hover
{
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    box-shadow: 0 8px 22px rgba(30,60,114,0.35);
    transform: translateY(-2px);
}

form button:active
{
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(30,60,114,0.25);
}

@media (max-width: 480px)
{
    .container
    {
        padding: 1.75rem;
        margin: calc(var(--header-height, 60px) + 1rem) 1rem 2rem;
    }

    .page-title
    {
        font-size: 1.7rem;
    }
}
