/* Responsive container for both signatures */
.signature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 35px;
    margin-bottom: 25px;
    width: 100%;
}

/* Individual column configuration */
.signature-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Header text for each signature */
.signature-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 12px;
}

/* Visual frame box for the physical signature/stamp zone */
.signature-pad-box {
    position: relative; /* Crucial for centering the text overlay */
    width: 100%;
    max-width: 320px;
    height: 140px; /* Slightly taller to accommodate all text beautifully */
    border: 2px dashed rgba(43, 108, 176, 0.4);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 15px;
    box-sizing: border-box;
}

/* Dead-center styling for the watermark text notices */
.signature-notice-center {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    width: 90%;
    pointer-events: none; /* Keeps input elements non-clickable */
}

.signature-notice-center strong {
    font-size: 13px;
    color: #c53030; /* Subtle warning red/crimson */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.signature-notice-center span {
    font-size: 11px;
    color: #4a5568;
    font-style: italic;
}

/* Inside descriptive bottom label text */
.signature-placeholder {
    font-size: 12px;
    color: #718096;
    font-weight: 500;
}

/* Mobile responsive collapse adjustment */
@media (max-width: 600px) {
    .signature-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}


