/* ════════════════════════════════════════════════ */
/* ▶ SECTION STYLING                                */
/* ════════════════════════════════════════════════ */

.section1 { background-color: #ffce00; }
.section2 { background-color: #0051a4; }
.section3 { background-color: #f17fb2; }
.section4 { background-color: #ffce00; }


/* ════════════════════════════════════════════════ */
/* ▶ NAVBAR: ACTIVE PAGE                            */
/* ════════════════════════════════════════════════ */

li .nav-button-membership  {
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;
}

li .nav-button-membership:hover {
    color: #0051a4;
}


.subtitle2 {
  margin-bottom: 5vh;
}

/* ════════════════════════════════════════════════ */
/* ▶ FORM                                           */
/* ════════════════════════════════════════════════ */

.label1 {
    display: block;
    text-align: left;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: grey;
    margin-bottom: 5px;
}

.label2 {
    display: block;
    text-align: left;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: grey;
    margin-bottom: 10px;
    margin-top: 15px;
}

.container-adress {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-content: stretch;
}

.container-element {
    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: 0;
}

input[type=text], input[type=email], input[type=date], select, textarea {
    display: block;
    width: 100%;
    padding: clamp(10px, 2vw, 12px);
    border: 1px solid #ccc;
    border-radius: 16px;
    box-sizing: border-box;
    margin-top: clamp(5px, 1vw, 6px);
    margin-bottom: clamp(20px, 3vw, 40px);
    resize: vertical;
    font-size: clamp(1rem, 2vw, 1rem);
    color: #0051a4;
    font-weight: 500;
}



input:focus, textarea:focus {
    border-color: #0051a4;
    outline: none;
}

textarea {
    min-height: 200px;
}

.required-field {
    color: #ee3a37;
}
