* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

#regForm {
    background-color: #ffffff;
    margin: 10px auto;
    width: 100%;
    min-width: 300px;
}

.form-control {
    width: 560px;
    padding: 14px;
    border: 1px solid #A0A3B0 !important;
    margin-bottom: 30px !important;
    padding-left: 40px;
    border-radius: 10px !important;
}

input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #000 !important;
}

textarea:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #000 !important;
}

.btn-formall {
    background: #3A8B02;
    width: 155px;
    height: 50px;
    font-size: px;
    border-radius: 10px;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
    display: none;
}

button {
    background-color: #04AA6D;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
}

label {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 7px;
}

button:hover {
    opacity: 0.8;
}

#prevBtn {
    background-color: #bbbbbb;
}

.step-title {
    font-size: 20px;
    font-weight: 500;
    margin-left: 5px;
}

.main-step .step-item img {
    margin: 0px 10px;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 40px;
    width: 40px;
    margin: 0 2px;
    background: #3A8B02;
    color: #ffffff;
    border: none;
    line-height: 40px;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background: #3A8B02 !important;
    opacity: 1 !important;
}

textarea {
    border: 1px solid #7e7e7e !important;
}

.main-step {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

/* .step-item{
    flex-wrap: wrap;
    flex: 1 1 33%;
} */

.field-icon {
    position: relative;
}

.field-icon img {
    position: absolute;
    top: 49px;
    left: 15px;
}

.first-step-form {
    border: 1px solid #a0a3b0;
    width: 560px;
    border-radius: 10px !important;
    padding-left: 40px;
    margin-bottom: 30px !important;
}


@media (min-width: 200px) and (max-width:768px) {
    .form-control {
        /* padding: 10px; */
        width: 100% !important;
        padding: 14px;
        border: 1px solid #A0A3B0 !important;
        margin-bottom: 30px !important;
        padding-left: 40px;
        border-radius: 10px !important;
    }

    .first-step-form {
        border: 1px solid #a0a3b0;
        width: 100% !important;
        border-radius: 10px !important;
        padding-left: 40px;
        margin-bottom: 30px !important;
    }

    .form-control::placeholder {
        color: #7e7e7e !important;
    }
}

@media (min-width: 720px) and (max-width:1200px) {
    .form-control {
        width: 100% !important;
    }

    .first-step-form {
        width: 100% !important;
    }
}

@media (min-width: 320px) and (max-width:991px) {
    .main-step .step-item {
        flex: 1 1 33%;
    }

    .step-title {
        display: block;
        font-size: 10px;
        font-weight: 500;
    }

    .main-step .step-item img {
        display: none;
    }

    .step {
        margin-bottom: 12px !important;
    }
}

@media (min-width: 991px) and (max-width:1200px) {

    .main-step .step-item img {
        width: 30px !important;
    }

}