/* ISCA Exhibit Interest Form Styles */
.isca-exhibit-form {
    font-family: Jost, sans-serif;
    font-weight: normal;
    max-width: 700px;
    margin: 40px auto; 
    border-radius: 12px; 
    padding: 32px 32px 84px 32px; 
    min-height: 100vh;
    overflow: auto;
}
.isca-exhibit-form h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5em;
}
.isca-subtitle {
    text-align: center;
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 2em;
}
.isca-row {
    margin-bottom: 1.5em;
    display: flex;
    flex-direction: column;
}
.isca-row label {
    /* font-weight: 600; */
    margin-bottom: 0.5em;
}
.isca-row input[type="text"],
.isca-row input[type="email"],
.isca-row select,
.isca-row textarea {
    padding: 0.7em;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    font-size: 1em;
    background: #f7f9fa;
    transition: border-color 0.2s;
}
.isca-row input:focus,
.isca-row select:focus,
.isca-row textarea:focus {
    border-color: #0a2a4a;
    outline: none;
}
.isca-row textarea {
    min-height: 100px;
    resize: vertical;
}
.isca-error {
    color: #d32f2f;
    font-size: 0.95em;
    margin-top: 0.3em;
}
.isca-success {
    background: #e8f5e9;
    color: #388e3c;
    padding: 1em;
    border-radius: 6px;
    margin-bottom: 1em;
    text-align: center;
}
.isca-delegation-group {
    background: #f7f9fa;
    border-radius: 6px;
    padding: 1em;
    margin-top: 0.5em;
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid #cfd8dc;
}
.isca-region {
    margin-top: 0.7em;
    margin-bottom: 0.3em;
    font-weight: 600;
    color: #0a2a4a;
}
.isca-delegation {
    display: block;
    margin-bottom: 0.2em;
    font-size: 0.98em;
}
#delegation-search {
    margin-bottom: 0.7em;
    padding: 0.6em;
    border-radius: 6px;
    border: 1px solid #cfd8dc;
    width: 100%;
    font-size: 1em;
}
.isca_exhibit_interest_submit  {
    background: #0a2a4a;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding:1em;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1em;
    transition: background 0.2s;
    display: block;
    width: 100%;
}
.isca_exhibit_interest_submit:hover {
    background: #174a7c;
}
@media (max-width: 600px) {
    .isca-exhibit-form {
        padding: 16px;
    }
}
