
.card-create-account {
    width: 100%;
    background-color: #FFFFFF1A;
    height: 84px;
    border-radius: 12px;
    a{
        i{
            transition: margin-left 0.5s;
        }
    }
    a:hover{
        i{
            margin-left: 10px;
        }
    }
}

.img-column-create-account {
    background-image: url('../assets/front-end-img/create-account-img.png');
    width: 112px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.right-column-create {
    padding: 32px;
}

.right-column{
    padding-inline: 128px;
}

.right-column .progress{
    height: 4px;
}

.create-account-step1 .radio-card {
    background-color: #FCDEBD;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#create-account-step1 label.active .icon-div-creation-account {
    background-color: #87DDC1;
}    
#create-account-step1 label:hover .icon-div-creation-account  {
    background-color: #87DDC1;
}

.icon-div-creation-account{
    width:98px;
    margin-left:-1px;
    transition: 0.3s;
}

#create-account-step1 .choice-inscription-card{
    height:98px;
}

.bg-dark input {
    border: none;
    border-bottom: 1px solid #A3ABB0;
    border-radius: 0;
    background-color: transparent;
    color: inherit;
}

.bg-creamy input, .bg-creamy select, .bg-creamy select:focus{
    border: none;
    border-bottom: 1px solid #A3ABB0;
    border-radius: 0;
    background-color: transparent;
}

.bg-dark .input-group-text {
    border: none;
    border-bottom: 1px solid #A3ABB0;
    border-radius: 0;
    background-color: transparent;
}

.bg-creamy .input-group-text {
    border: none;
    border-bottom: 1px solid #A3ABB0;
    border-radius: 0;
    background-color: transparent;
}
.form-control{
    height: 30px;
    padding-left: 0;
}
.input-group-text{
    padding: 6px 0 6px 12px;
}

.form-control:focus{
    background-color: transparent;
    color: inherit;
    box-shadow: none;
    border-color:#87DDC1;
}

.bg-creamy .form-control::placeholder{
    color: #858B90;
}

.bg-dark .form-control::placeholder {
    color: #AFB5B9;
}

.bg-creamy .bg-dark .form-check-input{
    border: 2px solid #DCE4E9;
}
.bg-dark .form-check-input{
    border: 1px solid #DCE4E9;
}
.bg-creamy .form-check-input{
    border: 1px solid #233143;
}
#teacher1Container form label,
#teacher5Container form label {
    color: #3C686B;
}


.form-check-input:focus{
    box-shadow: none;
}
.form-check-input:checked{
    background: #87DDC1;
}

.label-radio {
    cursor: pointer; 
    position: relative;
    padding-left: 35px;
}

.label-radio::before {
    content: ''; 
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 16px; 
    width: 16px;
    background-color: transparent;
    border: 2px solid #FAFBFC;
    border-radius: 50%; 
    transition: 0.3s;
}

input[type="radio"]:checked + .label-radio::before {
    background-color: #87DDC1; /* Change le fond en blanc pour indiquer qu'il est coché */
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.form-check {
    .form-check-input{
        height: 12px;
        width: 12px;
        border-radius: 2px;
    }
}
.checkmark {
    display: block;
    top: 0;
    left: 0;
    border: 2px solid white;
    margin: 0.5rem;
    margin-left: 1rem;
    transition: 0.3s;
}

.form-floating input[type="checkbox"]:checked ~ .checkmark,
.form-check input[type="checkbox"]:checked ~ .checkmark {
    background-color: #87DDC1;
}

.form-check .checkmark {
    display: block;
    top: 0;
    left: 0;
    height: 12px;
    width: 12px;
    border: 1px solid black;
    border-radius: 100%;
    margin: 0.5rem;
    margin-left: 1rem;
    transition: 0.3s;
}
.pin-box {
    .pin-input {
        display: flex;
        gap: 24px;
        input {
            background-color: #E5EBEF;
            text-align: center;
            border: none;
            border-radius: 8px;
            height: 60px;
            width: 50px;
            -webkit-appearance: none;
        }

        input::-webkit-outer-spin-button,
        input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        input[type=number] {
            -moz-appearance: textfield;
        }
    }
}

.checkboxes-form{
    .form-check-input{
        &.circle-check{
            border-radius: 999px;
        }
        margin-left: 0;
        margin-right: 10px;
    }
    p{
        margin-left: 20px;
    }
}

.form-select {
    background-color: transparent;
    border: 0 ;
    outline: none;
    }

.form-select:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
}

.link-add-establishment{
    margin-right: 8px;
}
.link-add-establishment:hover{
    margin-right: 12px;
}

@media (max-width: 1200px) {

    .right-column-create {
        padding: 10px;
    }


    .right-column{
        padding-inline: 80px;
    }

}