.card-container {
    max-width: 920px;
}

.signup-form-box {
    max-width: 420px;
}

.section-sep {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #9ca3af;
    margin: 20px 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-sep::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #f0f0f8;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.lookup-result {
    margin-top: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 12px;
    display: none;
}

.lookup-result.found {
    background: #d1fae5;
    color: #065f46;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lookup-result.not-found {
    background: #fee2e2;
    color: #991b1b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.input-with-btn {
    display: flex;
    gap: 0;
}

.input-with-btn input {
    border-radius: 10px 0 0 10px !important;
    flex: 1;
}

.btn-lookup {
    background: #f0ecff;
    color: #4f2d9e;
    border: 1.5px solid #e5e7eb;
    border-left: none;
    border-radius: 0 10px 10px 0;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    font-family: "Inter", sans-serif;
}

.btn-lookup:hover {
    background: #ede9fe;
}

.signup-submit {
    margin-top: 8px;
}

.signup-footer {
    margin-top: 20px;
}

.signup-footer p {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
}

.signup-footer-spaced {
    margin-top: 6px;
}

@media (max-width: 600px) {
    .field-row {
        grid-template-columns: 1fr;
    }
}
