.questionnaire-form-wrapper .questionnaire-form-step-indicator {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.questionnaire-form-step-indicator .circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#369386 0deg 180deg, #F2F6F6 180deg 360deg);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    position: relative;
    transition: all 0.4s ease;
}

.questionnaire-form-step-indicator .circle span {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    background: #fff;
    border-radius: 50%;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}

.questionnaire-form-wrapper .form-content-wrapper {
    margin-top: 25px;
}

.questionnaire-form-wrapper .form-content-wrapper h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    margin: 0;
    color: #000;
}

.questionnaire-form-wrapper .form-content-wrapper p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    margin: 0;
    color: #000000b3;
    margin-top: 8px;
}

.questionnaire-form-wrapper .questionnaire-form {
    margin-top: 20px;
}

.questionnaire-form .form-step {
    display: none;
}

.questionnaire-form .form-step.active {
    display: block;
}

.questionnaire-form .form-step .question {
    margin-bottom: 30px;
}

.questionnaire-form .form-step .question p {
    margin-bottom: 12px;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

.questionnaire-form .question .answers-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.questionnaire-form .question .answers-wrapper label {
    width: calc(50% - 6px);
    padding: 13px;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #0000001A;
    display: flex;
    align-items: center;
    gap: 10px;
}

.questionnaire-form .question .answers-wrapper label input[type="radio"] {
    width: 18px;
    aspect-ratio: 1;
}

.questionnaire-form .question.invalid .answers-wrapper label {
    border-color: #e74c3c;
}

.questionnaire-form .form-btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.questionnaire-form .form-btn-wrapper button.full-width-btn {
    width: 100%;
}

.questionnaire-form .form-btn-wrapper button {
    padding: 20px;
    border-radius: 14px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.questionnaire-form .form-btn-wrapper button.next-btn,
.questionnaire-form .form-btn-wrapper button.submit-btn {
    background: #111D26;
    border: 1px solid #111D26;
    color: #fff;
}

.questionnaire-form .form-btn-wrapper button.next-btn:hover,
.questionnaire-form .form-btn-wrapper button.submit-btn:hover {
    color: #111D26;
    background: #0000;
}

.questionnaire-form .form-btn-wrapper button.two-btn {
    width: calc(50% - 6px);
}

.questionnaire-form .form-btn-wrapper button.prev-btn {
    background: #D9D9D9;
    border: 1px solid #D9D9D9;
    color: #121116;
}

.questionnaire-form .form-btn-wrapper button.prev-btn:hover {
    color: #fff;
    background: #369386;
    border-color: #369386;
}

.questionnaire-form-wrapper p.data-encript-msg {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    margin: 0;
    color: #000000b3;
    margin-top: 20px;
    margin-bottom: 0;
}

.retry-button-wrapper .retry-questionnaire-btn {
    width: 100%;
    background-color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1em;
    color: #000000;
    border: 1px solid #fff;
    border-radius: 14px;
    padding: 16px 20px;
    transition: all 0.5s ease;
}

.retry-button-wrapper .retry-questionnaire-btn:hover,
.retry-button-wrapper .retry-questionnaire-btn:focus {
    background-color: #111D26;
    color: #fff;
}

@media (max-width: 767px) {
    .questionnaire-form .form-btn-wrapper button {
        padding: 13px 18px;
        font-size: 16px;
    }
}

/*Register User CSS*/
.register-form-wrapper form .form-fields-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.register-form-wrapper .form-fields-wrapper .form-control {
    width: calc(50% - 8px);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.register-form-wrapper .form-fields-wrapper label {
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #000;
    margin-bottom: 10px;
}

.register-form-wrapper .form-fields-wrapper input {
    padding: 14px 30px;
    border: 1px solid #0000001A;
    border-radius: 50px;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

.register-form-wrapper .form-fields-wrapper input:focus {
    outline: none;
    border: 1px solid #266165;
}

.register-form-wrapper .form-fields-wrapper input::placeholder {
    color: rgba(0, 0, 0, 0.3);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}

.register-form-wrapper .form-fields-wrapper .form-control .password-field-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
}

.register-form-wrapper .form-fields-wrapper .password-field-wrapper .toggle-password {
    padding: 0;
    border: none;
    font-size: 16px;
    color: #000;
    background: transparent;
    line-height: 1;
    display: flex;
    position: absolute;
    top: calc(50% - 8px);
    right: 10px;
}

.register-form-wrapper .form-fields-wrapper .password-field-wrapper .toggle-password:hover,
.register-form-wrapper .form-fields-wrapper .password-field-wrapper .toggle-password:focus {
    background: transparent;
    color: #000;
    border: none;
    outline: none;
}

.register-form-wrapper form .form-submit-wrapper {
    margin-top: 40px;
}

.register-form-wrapper form .form-submit-wrapper button.create-user-btn {
    width: 100%;
    padding: 20px;
    border-radius: 14px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    background: #111D26;
    border: 1px solid #111D26;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.register-form-wrapper form .form-submit-wrapper button.create-user-btn:hover,
.register-form-wrapper form .form-submit-wrapper button.create-user-btn:focus {
    color: #111D26;
    background: #0000;
    outline: none;
}

.register-form-wrapper form .policy-acceptance-wrapper label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
}

.register-form-wrapper form .policy-acceptance-wrapper label a {
    color: rgba(38, 97, 101, 0.7);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
}

.register-form-wrapper form .policy-acceptance-wrapper label input[type="checkbox"] {
    width: 18px;
    aspect-ratio: 1;
}

@media (max-width: 767px) {
    .register-form-wrapper .form-fields-wrapper .form-control {
        width: 100%;
    }
}