.form-sheet-area {
    background: linear-gradient(180deg, #f6f7f9 0%, #eef2f7 100%);
    padding: 48px 0 72px;
}

.form-sheet {
    background: #fff;
    border: 1px solid #d7dde7;
    box-shadow: 0 20px 45px rgba(14, 31, 53, 0.08);
    padding: 32px 36px;
    max-width: 900px;
    margin: 0 auto;
}

.form-sheet-header {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
}

.form-sheet-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.form-sheet-heading {
    text-align: center;
    color: #111;
}

.form-sheet-heading h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.form-sheet-heading h3 {
    font-size: 19px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.form-sheet-section {
    margin-bottom: 18px;
}

.form-sheet-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.sheet-grid {
    display: grid;
    gap: 12px 18px;
}

.sheet-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sheet-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sheet-grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sheet-line-field {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    min-width: 0;
}

.sheet-line-field label,
.sheet-inline-label {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.sheet-line-input,
.sheet-line-field textarea {
    border: 0;
    border-bottom: 1px solid #30343b;
    border-radius: 0;
    padding: 4px 0 2px;
    background: transparent;
    color: #111;
    box-shadow: none;
    flex: 1 1 180px;
    min-width: 120px;
}

.sheet-line-input:focus,
.sheet-line-field textarea:focus {
    border-color: #0a58ca;
    box-shadow: none;
}

.sheet-line-field textarea {
    min-height: 72px;
    resize: vertical;
}

.sheet-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 6px;
}

.sheet-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #111;
}

.sheet-check input {
    width: 14px;
    height: 14px;
}

.sheet-note {
    font-size: 13px;
    color: #444;
    margin-top: 6px;
}

.sheet-footer {
    border-top: 1px solid #d7dde7;
    margin-top: 24px;
    padding-top: 18px;
}

.sheet-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    justify-content: center;
}

.sheet-actions .btn {
    min-width: 180px;
}

@media (max-width: 767px) {
    .form-sheet {
        padding: 24px 18px;
    }

    .form-sheet-header {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .sheet-grid.cols-2,
    .sheet-grid.cols-3,
    .sheet-grid.cols-4 {
        grid-template-columns: 1fr;
    }
}

@media print {
    .top-header-area,
    .navbar-area,
    .footer-area,
    .copyright-area,
    .go-top,
    .page-banner-area,
    .sheet-actions,
    .preloader-area,
    .container.pt-4 {
        display: none !important;
    }

    .form-sheet-area {
        background: #fff;
        padding: 0;
    }

    .form-sheet {
        box-shadow: none;
        border: 0;
        max-width: 100%;
        padding: 0;
    }
}
