.area-email {
  width: 100%;
  padding: 0.375rem 0.75rem;
    padding-right: 0.75rem;
    padding-bottom: 0.375rem;
    padding-left: 0.75rem;
  line-height: 1.5;
  color: rgb(73, 80, 87);
  background-color: rgb(255, 255, 255);
  background-clip: padding-box;
  border: 1px solid rgb(206, 212, 218);
  font-size: 18px;
  font-size: 15px;
  border-radius: 2px;
}
.badge-custom {
  background-color: #007bff !important;
  color: #fff;
  border-radius: 15px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
}
.badge {
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25rem;
  margin-right: .5em;
  background-color: #f5f7fa;
  border: 1.5px solid #ccd1d9;
  font-weight: 500 !important;
}
.badge {
  border-radius: 0;
  font-size: 13px;
  line-height: 1;
  padding: .375rem .5625rem;
  font-weight: normal;
}
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.ProfileUploadWrapper{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
}

.ProfileImagePreview{
    width:150px;
    height:150px;
    border-radius:50%;
    overflow:hidden;
    border:3px solid #eee;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f8f9fa;
}

.ProfilePreviewImg{
    width:100%;
    height:100%;
    object-fit:cover;
}
.CustomFileWrapper{
    position:relative;
}

.CustomFileInput{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    cursor:pointer;
}

.CustomFileLabel{
    border:1px dashed #ccc;
    padding:12px;
    border-radius:8px;
    text-align:center;
    background:#f8f9fa;
    transition:.3s;
}

.CustomFileLabel:hover{
    background:#eef2f7;
}

.CustomFileText{
    margin-left:8px;
}
.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-item {
    display: flex;
    flex-direction: column; /* Permet d’avoir le nom au-dessus du cercle */
    align-items: center;
    justify-content: center;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e5e5;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #e5e5e5;
}

/* étape active */
.step-item.active .step-circle {
    background: #4d83ff;
    color: white;
}

/* étape complétée */
.step-item.completed .step-circle {
    /* background: #28a745; */
    color: white;
}

/* Nom de l'étape petit au-dessus */
.step-name-small {
    font-size: 10px;
    margin-bottom: 4px;
    text-align: center;
    color: #555;
    position: absolute;
  top: 62px;
}
