/* ── EXPT Job Alerts – Front-end styles ── */

.expt-ja-wrap {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.expt-ja-text {
    flex: 0 0 260px;
    color: #fff;
}

.expt-ja-text h3 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.75rem;
    color: #fff;
}

.expt-ja-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.expt-ja-text strong {
    color: #00B574;
}

.expt-ja-form-wrap {
    flex: 1;
    min-width: 260px;
}

#expt-ja-form .expt-ja-fields {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

#expt-ja-form input[type="text"],
#expt-ja-form input[type="email"],
#expt-ja-form select {
    flex: 1;
    min-width: 150px;
    height: 46px;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-size: 14px;
    padding: 0 14px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none !important;
}

#expt-ja-form input::placeholder { color: rgba(255,255,255,0.4); }
#expt-ja-form select option       { background: #1a2a3d; color: #fff; }

#expt-ja-form input:focus,
#expt-ja-form select:focus {
    border-color: #00B574 !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.expt-ja-btn {
    display: inline-block;
    height: 46px;
    padding: 0 28px;
    background: #00B574;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    font-family: inherit;
}

.expt-ja-btn:hover   { background: #009960; }
.expt-ja-btn:active  { transform: scale(0.97); }
.expt-ja-btn:disabled { background: #666; cursor: not-allowed; }

.expt-ja-message {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}
.expt-ja-message.success {
    background: rgba(0, 181, 116, 0.15);
    border: 1px solid rgba(0, 181, 116, 0.4);
    color: #00e699;
    display: block;
}
.expt-ja-message.error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #ff6b7a;
    display: block;
}

.expt-ja-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin: 8px 0 0;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 5px;
}
.expt-ja-note svg { flex-shrink: 0; stroke: rgba(255,255,255,0.35); }

@media (max-width: 640px) {
    .expt-ja-wrap        { flex-direction: column; }
    .expt-ja-text        { flex: none; }
    .expt-ja-fields      { flex-direction: column; }
    #expt-ja-form input,
    #expt-ja-form select { min-width: 100%; }
    .expt-ja-btn         { width: 100%; }
}
