/* Steps */
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.step.active {
    color: #007BFF;
    font-weight: bold;
}

.line {
    width: 50px;
    height: 2px;
    background-color: #ddd;
    margin: 0 10px;
}

/* Icon */
.icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-container img {
    width: 80px;
    height: 80px;
}

/* Form */
#registration-form {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.form-group {
    flex: 1 1 45%; /* 2 éléments par ligne */
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-primary {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}
