/**
 * Public/admin intake page styles.
 * Reuses traveler module look so the public form matches the same UI.
 */

.tms-traveler-intake-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.tms-traveler-intake-admin-wrap .tms-card,
.tms-traveler-intake-wrap .tms-card {
    border-radius: 14px;
}

.tms-intake-person-block {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    padding: 20px;
}

.tms-dependent-card {
    background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
}

.tms-intake-result-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    padding: 18px;
}

.tms-intake-result-card h3,
#tms-public-traveler-form h3 {
    margin-bottom: 16px;
    font-size: 18px;
    color: #1e293b;
    font-weight: 600;
}
.tms-travelers-wrap.tms-traveler-intake-wrap p {
    font-size: 14px;
}

.tms-intake-person-block + .tms-intake-person-block {
    margin-top: 20px;
}

.tms-intake-form-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    margin-bottom: 20px;
    border: 1px solid #ddd6fe;
    border-radius: 14px;
    background: linear-gradient(180deg, #faf5ff 0%, #f8fafc 100%);
}

.tms-intake-form-note__icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ede9fe;
    color: #6d28d9;
    font-size: 16px;
}

.tms-intake-form-note__content strong {
    display: block;
    margin-bottom: 6px;
    color: #4c1d95;
    font-size: 14px;
    font-weight: 700;
}

.tms-intake-form-note__content p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}
.tms-traveler-intake-admin-wrap label,
.tms-shared-traveler-form label,
.tms-dependent-card label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #334155;
    font-size: 13px;
}

.tms-traveler-intake-admin-wrap .tms-required,
.tms-shared-traveler-form .tms-required,
.tms-dependent-card .tms-required {
    color: #dc2626;
}
.tms-traveler-intake-admin-wrap input,
.tms-shared-traveler-form input,
.tms-shared-traveler-form select,
.tms-shared-traveler-form textarea,
.tms-dependent-card input {
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}
.tms-traveler-intake-admin-wrap input:focus,
.tms-shared-traveler-form input:focus,
.tms-shared-traveler-form select:focus,
.tms-shared-traveler-form textarea:focus,
.tms-dependent-card input:focus {
    outline: none;
    border-color: #4b0082;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

@media (max-width: 768px) {
    .tms-intake-person-block {
        padding: 16px;
    }
}
