/* START hero */

.hero {
    height: auto;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.hero .uniformSpacing {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1em;
    margin: 5em auto;
}

.hero .uniformSpacing i {
    color: var(--basicColor1);
    font-style: initial;
}


@media screen and (max-width: 700px) {
    .hero {
        height: auto;
        min-height: initial;
    }
}
/* END hero */


/* START FORM */
body{
    max-width: 1920px !important;
    margin: 0 auto !important;
}

.form-section h2 {
    display: flex;
    align-items: flex-start;
}
.progress-bar {
    transition: width 0.3s ease;
}
.sticky-progress-container {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: transparent;
    padding-bottom: 20px;
}
.progress-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1rem 1.5rem;
    border: 1px solid #e5e5e5;
}

.rgpd-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    border-color: #6b7280;
    border-width: 1px;
    border-radius: 0.25rem;
    cursor: pointer;
    background-color: #ffffff;
}
.rgpd-checkbox:checked {
    background-color: #16a34a;
    border-color: #16a34a;
    --tw-ring-color: #16a34a;
}


.icon {
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    stroke-width: 2.5;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* END FORM */

