.form_stl {
    text-align: center;
    position: relative;
}

.form_stl fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 20px;
    position: relative;
}

.form_stl .form-card {
    text-align: left;
}

.form_stl fieldset:not(:first-of-type) {
    display: none;
}

form.form_stl input,
form.form_stl textarea, 
form.form_stl select{
    padding: 8px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
    background-color: #ECEFF1;
    letter-spacing: 1px;
    height: 42px;
    transition: 0.3s;
    border: 1px solid #ccc;
}

form.form_stl select option{
    background: #fff;
    color: #333;
    padding: 8px;
    font-size: 16px;
}

.form_stl .form-card input[type="text"]::placeholder,
.form_stl .form-card input[type="tel"]::placeholder,
.form_stl .form-card input[type="email"]::placeholder,
.form_stl .form-card textarea::placeholder,
.form_stl .form-card select option,
.form_stl .form-card select {
    font-size: 14px;
    color: #454545;
    font-weight: normal;
}

.form_stl input:focus,
.form_stl textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #89bd40;
    outline-width: 0;
}

.form_stl .action-button {
    width: 100%;
    background: #89bd40;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    float: right;
    transition: 0.3s;
    margin-bottom: 0;
    line-height: 0;
}

.form_stl .action-button:hover,
.form_stl .action-button:focus {
    background-color: #323232;
}

.form_stl .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right;
}

.form_stl .action-button-previous:hover,
.form_stl .action-button-previous:focus {
    background-color: #000000;
}

.card {
    z-index: 0;
    border: none;
    position: relative;
}

/* .fs-title {
    font-size: 25px;
    color: #89bd40;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left;
} */

/* .purple-text {
    color: #B83F49;
    font-weight: normal;
} */

/* .steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
} */

/* .fieldlabels {
    color: gray;
    text-align: left;
} */

/* .fit-image {
    width: 100%;
    object-fit: cover;
} */

/* .form_stl .iti {
    width: 100%;
    margin-bottom: 15px;
} */

/* .form_stl .iti__country-container {
    left: 15px !important;
} */

.form_stl .iti__tel-input {
    padding-left: 102px !important;
}

.form_stl .success_img {
    max-width: 100px;
    margin: 0 auto;
    padding-bottom: 25px;
}

.form_stl .success_txt {
    color: #292929;
    text-align: center;
    font-size: 17px;
}

.form_stl .error {
    border: 1px solid #89bd40 !important;
}

.col-one,
.col-two {
    margin-bottom: 15px;
}
.col-two {
  display: flex;
  flex-direction: row;
  flex: 100%;
  gap: 24px; /* adjust as you like */
}

.col-two > div {
  flex: 1; /* each child div takes equal space */
}

/* Textarea height */
.form_stl textarea {
  resize: vertical;
  min-height: 100px !important;
}
span.required {
  color: #E01020;
}
.form_stl label{
  font-weight: 600;
}

@media (max-width: 1024px) {
    .col-two {
        flex-direction: column;
        gap: 15px;
    }
    .mof-submit {
      margin: 0;
      display: inline
    }
}
