.reclamation-link {
    display: inline-block;
    padding: 14px 32px;
    background: var(--color-navy-muted);
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.25s;
}

.reclamation-link:hover {
    background: rgba(188, 23, 34, 1);
    text-decoration: none;
    color: rgba(255, 255, 255, 1)
}

.bold {
    font-weight: bold !important;
}
.bold-none {
    font-weight: normal !important;
}
.blue {
    color: #1C2258 !important;
}
.black {
    color: #000000 !important;
}
.big-text {
    font-size: 32px !important;
}
.small-text {
    font-size: 14px !important;
}
.test-img {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}
.contact-img {
    width: 100%;
    height: auto;
    display: block;
}
.form-info {
    padding: 2rem;
    background-color: #F4F4FF;
    border-radius: 10px;
    gap: 1.5rem;
}
.link-adherent, .link-adherent:hover {
    color: #313131;
    text-decoration: underline;
}
.input-style {
    border: solid 2px #1C2258 !important;
    border-radius: 15px !important;
    color: #1C2258;
    padding: 1rem;
    height: auto !important;
}
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding-right: 2.5rem;
}

.select-wrapper::after {
    content: "";
    position: absolute;
    right: calc(1rem);
    top: calc(50%);
    transform: translateY(-50%);

    width: 8px;
    height: 8px;

    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.select-wrapper select:focus + .chevron {
    transform: rotate(180deg);
}

.select-wrapper select:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}
.submit-btn {
    background-color: #1C2258;
    border-radius: 50px;
    color: #FFFFFF;
    padding: 0.5rem 2rem;
    border: none;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.custom-error {
    color: #BC1722;
    font-size: 16px;
    margin-top: 4px;
    display: none;
}

/* Conteneur Symfony */
.form-check {
    display: flex;
    align-items: center;
}

/* Checkbox custom */
.form-check-input[type="checkbox"], .form-check-input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 20px;
    height: 20px;
    border: 2px solid #1C2258;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;

    position: relative;
    margin: 0 8px 0 0;
    flex-shrink: 0;
}

/* Point intérieur */
.form-check-input[type="checkbox"]:checked::after, .form-check-input[type="radio"]:checked::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #BC1722;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Label intact */
.form-check-label {
    cursor: pointer;
}

.input-placeholder-italic::placeholder {
    font-style: italic;
}

.mention-link {
    color: #313131 !important;
    text-decoration: underline;
}

.isAdherent-field {
    display: flex;
    gap: 2rem;
}

.isAdherent-field > .form-check {
    padding: 1rem 0;
}

.type-contact {
    cursor: pointer;
}

#lettre_reco > p {
    font-weight: 600;
    font-size: 16px !important;
}

.lettre-reco-blue {
    color: #1C2258;
}

.lettre-reco-red {
    color: #BC1722;
}

.lettre-reco-black {
    color: #313131;
}

.contact-email-container {
    position: relative;
}

#email-valid-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 50%;
    font-size: 18px;
    pointer-events: none;
}