body {
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
}
.header-logo .back-website {
    float: right !important;
}
label {
    padding: 0 !important;
}
#signUpForm {
    max-width: 90%;
    background-color: #ffffff;
    margin: 40px auto;
    padding: 40px;
    box-shadow: 0px 6px 18px rgb(0 0 0 / 9%);
    border-radius: 12px;
}
#signUpForm .form-header {
    gap: 5px;
    text-align: center;
    font-size: 0.9em;
}
@media (max-width: 600px) {
    .header-logo img {
        text-align: center !important;
    }
    .header-logo .back-website {
        float: unset !important;
    }
}
@media (max-width: 1024px) {
    #signUpForm {
        padding: 20px;
    }

    .button.file-wrap .txt .lbl {
        display: block;
        font-size: 12px !important;
        padding-left: 12px !important;
        padding-right: 20px !important;
        line-height: 1.5 !important;
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }
    #signUpForm .form-header {
        overflow-x: scroll;
        padding: 20px 0px;
    }
    #signUpForm .form-header span {
        font-size: 10px;
    }
}
#signUpForm .form-header .stepIndicator {
    position: relative;
    flex: 1;
    padding-bottom: 30px;
}
#signUpForm .form-header .stepIndicator.active {
    font-weight: 600;
}
#signUpForm .form-header .stepIndicator.finish {
    font-weight: 600;
    color: #0e1d42;
}
#signUpForm .form-header .stepIndicator::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 9;
    width: 20px;
    height: 20px;
    background-color: #c6c6c6;
    border-radius: 50%;
    border: 3px solid #c6c6c6;
}
#signUpForm .form-header .stepIndicator.active::before {
    background-color: #0e1d42;
    border: 3px solid #ceb89b;
}
#signUpForm .form-header .stepIndicator.finish::before {
    background-color: #0e1d42;
    border: 3px solid #ceb89b;
}
#signUpForm .form-header .stepIndicator::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 100%;
    height: 3px;
    background-color: #f3f3f3;
}
#signUpForm .form-header .stepIndicator.active::after {
    background-color: #ceb89b;
}
#signUpForm .form-header .stepIndicator.finish::after {
    background-color: #0e1d42;
}
#signUpForm .form-header .stepIndicator:last-child:after {
    display: none;
}
#signUpForm input {
    padding: 15px 20px;
    width: 100%;
    font-size: 1em;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
}
#signUpForm input:focus {
    border: 1px solid #0e1d42;
    outline: 0;
}
#signUpForm input.invalid {
    border: 1px solid #d61d10;
}
#signUpForm .step {
    display: none;
}
#signUpForm .form-footer {
    overflow: auto;
    gap: 20px;
    margin: 50px 0;
}
#signUpForm .form-footer button {
    background-color: #0e1d42;
    border: 1px solid #0e1d42 !important;
    color: #ffffff;
    border: none;
    padding: 13px 30px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    flex: 1;
    margin-top: 5px;
}
#signUpForm .form-footer button:hover {
    opacity: 0.8;
}
#signUpForm .form-footer #prevBtn {
    background-color: #fff;
    color: #0e1d42;
}
