/* VTC BDC Free Download — formulaire aligné sur la charte VTC-Shop
   Couleurs : navy #07276b, yellow #ffd70d, text #1a1a2e, muted #4a5568
   Accessibilité WCAG : contrastes ≥ 4.5:1, focus-visible, labels visibles */

.vtc-bdc-free-form {
    max-width: 480px;
    margin: 0;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(7, 39, 107, 0.10);
    font-family: inherit;
    text-align: left;
}

.vtc-bdc-free-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: #1a1a2e;
}

.vtc-bdc-free-form .vtc-field {
    margin-bottom: 1rem;
}

.vtc-bdc-free-form input[type="email"],
.vtc-bdc-free-form input[type="text"] {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.4;
    box-sizing: border-box;
    color: #1a1a2e;
    background: #fff;
}

.vtc-bdc-free-form input[type="email"]:focus,
.vtc-bdc-free-form input[type="text"]:focus {
    border-color: #07276b;
    outline: 2px solid #ffd70d;
    outline-offset: 1px;
    box-shadow: 0 0 0 1px #07276b;
}

.vtc-bdc-free-form button[type="submit"] {
    display: inline-block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #07276b;
    background: #ffd70d;
    border: 2px solid #ffd70d;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.vtc-bdc-free-form button[type="submit"]:hover {
    background: #e6c200;
    border-color: #e6c200;
    transform: translateY(-1px);
}

.vtc-bdc-free-form button[type="submit"]:focus-visible {
    outline: 2px solid #07276b;
    outline-offset: 2px;
}

.vtc-bdc-free-form .vtc-message {
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.vtc-bdc-free-form .vtc-message.vtc-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.vtc-bdc-free-form .vtc-message.vtc-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.vtc-bdc-honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* Contexte hero (fond vert foncé) : le formulaire doit s'aligner proprement
   et ne pas casser la grille des CTA. */
.vtc-bdc-hero__form {
    margin-bottom: 18px;
}

.vtc-bdc-hero__form .vtc-bdc-free-form {
    max-width: 480px;
    margin: 0;
}

.vtc-bdc-hero__ctas {
    align-items: flex-start;
}

.vtc-bdc-hero__ctas .vtc-btn--outline {
    align-self: flex-start;
    margin-top: 0;
}

/* Badge hero BDC (fond vert foncé) : contraste WCAG ≥ 4.5:1 — jaune plein + navy */
#vtc-bdc .vtc-bdc-hero .vtc-badge {
    background: #ffd70d;
    color: #07276b;
    border: 1px solid #ffd70d;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

