/*
 * ************************************************************
 * ************************************************************
 * ** Copyright (c) flavio.ferrara.it
 * ** All rights reserved.
 * **
 * ** Strict Proprietary Notice:
 * ** This website data, source code, and associated
 * ** assets are the exclusive property of flavio.ferrara.it.
 * ** Unauthorized copying, modification,
 * ** or distribution via any medium is strictly prohibited.
 * ************************************************************
 * ************************************************************
 */

/* ==========================
   COMPONENTS / FORMS
========================== */

.email-box {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px dashed var(--border);
}

.email-box-title {
    color: var(--navy);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 15px;
}

.eb-form-group {
    margin-bottom: 14px;
    text-align: left;
}

.eb-form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--slate);
}

.eb-form-group input,
.eb-form-group textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--charcoal);
    background-color: var(--white);
}

.eb-form-group input:focus,
.eb-form-group textarea:focus {
    border-color: var(--navy);
    outline: none;
}

.eb-submit-btn {
    width: 100%;
    padding: 11px;
    background-color: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.eb-submit-btn:hover {
    opacity: 0.9;
}

.eb-submit-btn:disabled{
    opacity: 0.6;
    cursor: not-allowed;
}

/* Anti-spam display rules */
.eb-hidden {
    display: none !important;
    visibility: hidden !important;
}

/* Submission validation alerts */
.eb-alert {
    padding: 10px 12px;
    margin-bottom: 15px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
}
.eb-alert.eb-success {
    background: #e2f0d9;
    color: #385723;
    border: 1px solid #c5e1b7;
}
.eb-alert.eb-error {
    background: #fce4d6;
    color: #c65911;
    border: 1px solid #f8cbad;
}
