.form-step.step-2 {
    display: none;
}
.canalous-progress {
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-container {
    display: flex;
    align-items: center;
    width: 250px;
    position: relative;
}

.progress-step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: linear-gradient(135deg, #09538a, #609dcc);
    color: #fff;
}

.progress-line {
    flex: 1;
    height: 4px;
    background-color: #e0e0e0;
    position: relative;
    z-index: 1;
    margin: 0 -10px; /* Pour que les cercles touchent la ligne */
    transition: background-color 0.3s ease;
}

.progress-line.active {
    background: linear-gradient(135deg, #09538a, #609dcc);
}

#title-step {
	text-align: center;
	color: #09538a;
}

/* Corrige la largeur du container Select2 */
.select2-container {
    width: 100% !important;
}

/* Pour que l'apparence colle à Bootstrap */
.select2-container--default .select2-selection--single {
    height: 38px;
    padding: 6px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    background-color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    box-sizing: border-box;
}

/* Pour le texte centré verticalement */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 24px;
    padding-left: 0;
}

/* Flèche alignée */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
    top: 1px;
    right: 10px;
} 

input[type="email"], input[type="password"], input[type="phone"], input[type="text"]{
    text-transform: lowercase !important;
}