/* ─── Уведомление внутри формы ───────────────────────────────────────────────── */
.fstec-form-notice {
    font-size: 0.82em;
    color: #555;
    border-left: 3px solid #c00;
    padding: 6px 10px;
    margin: 0 0 1.2em;
    background: #fff8f8;
    border-radius: 0 3px 3px 0;
}

/* ─── Публичное уведомление [fstec_notice] ───────────────────────────────────── */
.fstec-public-notice {
    padding: 14px 18px;
    background: #fff3cd;
    border: 1px solid #e6b800;
    border-left: 4px solid #c00;
    border-radius: 4px;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 1.2em 0;
}

/* ─── Оверлей ────────────────────────────────────────────────────────────────── */
#fstec-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
#fstec-overlay.active {
    display: flex;
}

/* ─── Модальное окно ─────────────────────────────────────────────────────────── */
#fstec-modal {
    background: #fff;
    border-radius: 8px;
    padding: 32px 28px 24px;
    max-width: 420px;
    width: 92%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .2);
    position: relative;
    box-sizing: border-box;
}
#fstec-modal h2 {
    margin: 0 0 6px;
    font-size: 1.2em;
    color: #1a1a1a;
}
#fstec-modal .fstec-subtitle {
    color: #666;
    margin: 0 0 20px;
    font-size: 0.88em;
    line-height: 1.45;
}
#fstec-modal label {
    display: block;
    font-size: 0.82em;
    font-weight: 600;
    color: #444;
    margin-bottom: 4px;
    letter-spacing: .02em;
    text-transform: uppercase;
}
#fstec-modal input[type="email"],
#fstec-modal input[type="text"] {
    width: 100%;
    padding: 10px 13px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
    margin-bottom: 14px;
    transition: border-color .15s;
    outline: none;
}
#fstec-modal input[type="email"]:focus,
#fstec-modal input[type="text"]:focus {
    border-color: #c00;
}
#fstec-modal .fstec-btn {
    width: 100%;
    padding: 11px;
    background: #c00;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background .15s;
    display: block;
}
#fstec-modal .fstec-btn:hover  { background: #a00; }
#fstec-modal .fstec-btn:active { background: #900; }
#fstec-modal .fstec-btn:disabled {
    background: #bbb;
    cursor: default;
}
#fstec-modal .fstec-btn-ghost {
    background: none;
    color: #c00;
    border: 1px solid #c00;
    margin-top: 8px;
}
#fstec-modal .fstec-btn-ghost:hover { background: #fff8f8; }

#fstec-error {
    color: #c00;
    font-size: 0.84em;
    margin-top: 10px;
    min-height: 1.2em;
    line-height: 1.4;
}

/* Кнопка закрытия */
#fstec-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.5em;
    line-height: 1;
    cursor: pointer;
    color: #999;
    padding: 2px 6px;
    border-radius: 3px;
    width: auto;
    display: block;
}
#fstec-close:hover { color: #333; background: #f0f0f0; }

/* Иконка конверта */
#fstec-modal .fstec-icon {
    font-size: 2em;
    margin-bottom: 10px;
    display: block;
}

/* Шаг с кодом — изначально скрыт */
#fstec-step-code { display: none; }

/* Ссылка «отправить повторно» */
#fstec-hint-email {
    font-size: 0.83em;
    color: #666;
    margin-bottom: 14px;
    word-break: break-word;
}
