
.participant-page{
    width: 720px; 
    margin: 0 auto;   
}

.intervenant-head{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 40px;
}

.steps{
    display: none;
}

.participant-page .step1{
    display: block;
}

.intervenant-step{
    display: flex;
    align-items: center;
    padding: 5px 15px 5px 5px;
    border-radius: 100px;
    box-shadow: 0px 20px 40px 5px rgba(0, 0, 0, 0.07);
    gap: 10px;
}

.subtitle{
    font-size: 26px;
    font-weight: 500;
}

.intervenant-step p:first-child{ 
    padding: 6px 8px;
    background-color: rgba(255, 92, 0, 1);
    color: #FFF;
    border-radius: 150px;
} 

.step4 .intervenant-step p:first-child{  
    background-color: rgba(60, 186, 196, 1);
}

.intervenant-step p{
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

.participant-page .radio{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.participant-page .radio label{
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0 !important;
}

.participant-page .radio input[type=radio]{
    position: static;
    margin: 0;
    height: 28px;
    width: 28px;
    accent-color: rgba(255, 92, 0, 1);
}

.button-containers{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.participant-page button{ 
    width: 335px;
    height: 54px;
    padding-right: 18px;
    padding-left: 18px;
    border-radius: 100px;
    border: none;
    font-size: 18px;
    font-weight: 500;
    background: rgba(52, 73, 94, 0.07);
    color: rgba(52, 73, 94, 1);
}

.participant-page button:last-child{
    background: rgba(255, 92, 0, 1);
    color: #FFF;
}

.participant-page .step4  button:last-child{
    background: rgba(60, 186, 196, 1);
    color: #FFF;
}

.participant-page form .col:last-child{
    padding: 0;
}

.checkbox-group {
  margin-top: 16px;
}

.checkbox-group label {
  display: flex;
  gap: 10px;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
}

.checkbox-group input[type="checkbox"] {
  appearance: none; 
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 92, 0, 1);
  border-radius: 6px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.checkbox-group input[type="checkbox"]:checked {
  background-color: rgba(255, 92, 0, 1);
}

.checkbox-group input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 9px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.checkbox-group input[type="checkbox"]:hover {
  box-shadow: 0 0 0 4px rgba(255, 92, 0, 0.15);
}

.checkbox-group input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 92, 0, 0.25);
}

.checkbox-group span{
    max-width: calc(100% - 40px);
}

.col + .col {
  margin-left: 12px;
}

@media (max-width: 1260px) {
    .participant-page{
        width: 100%;
    }

    .participant-page .subtitle{
        font-size: 18px;
        max-width: calc(100% - 155px);
        margin: 0;
    }

    .intervenant-head p{
        font-size: 14px;
    }

    .intervenant-head{
        align-items: center;
    }

    .intervenant-step{
        width: 155px;
    }

    .participant-page form .form-content .row{
        flex-wrap: wrap;
    }

    .participant-page form .form-content .row .col2{ width: 100%; }
    .participant-page form .form-content .row .col:first-child,
    .participant-page form .form-content .row .col2:first-child{
        padding: 0;
    }

    .participant-page form .form-content .row .col:last-child,
    .participant-page form .form-content .row .col2:last-child{ 
        padding: 20px 0 0 0;
        margin-left: 0 !important;
    }
}