.gap-shell {
    --gap-blue: #06295c;
    --gap-green: #69ad35;
    --gap-border: #d8dee8;
    max-width: 980px;
    margin: 0 auto;
    padding: 28px 16px;
    color: #142033;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gap-brand {
    margin-bottom: 24px;
}

.gap-brand img {
    max-width: 520px;
    width: 100%;
    height: auto;
}

.gap-card {
    border: 1px solid var(--gap-border);
    border-radius: 8px;
    padding: 22px;
    margin-bottom: 18px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.gap-card h2 {
    margin-top: 0;
    color: var(--gap-blue);
}

.gap-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.gap-form label {
    display: grid;
    gap: 6px;
    font-weight: 600;
}

.gap-form input,
.gap-form select {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--gap-border);
    border-radius: 6px;
    padding: 8px 10px;
    font: inherit;
    box-sizing: border-box;
}

.gap-check {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
}

.gap-check input {
    width: auto;
    min-height: auto;
}

.gap-status,
.gap-notice {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    border-left: 5px solid var(--gap-green);
    background: #f5faef;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.gap-muted {
    color: #5b6678;
}

.gap-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 22px;
}

.gap-actions button,
.gap-auth-card button,
.gap-form button {
    border: 0;
    border-radius: 6px;
    padding: 11px 18px;
    background: var(--gap-blue);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}

.gap-actions button:last-child {
    background: var(--gap-green);
    color: #10200a;
}

.gap-documents {
    margin-top: 14px;
}

.gap-member-row {
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid var(--gap-border);
}

@media (max-width: 700px) {
    .gap-grid {
        grid-template-columns: 1fr;
    }

    .gap-actions,
    .gap-status {
        flex-direction: column;
        align-items: stretch;
    }
}
