/* Style for form container */
#multi-step-form {
    width: 100%;
    max-width: 600px;
    /* margin: 0 auto; */
    /* padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd; */
    border-radius: 5px;
}

.btn-primary {
    background-color: #2482ba !important;
}
.btn-primary:hover {
    color: #fff;
    background-color: #18577E !important;
    border-color: #18577E !important;
}
/* .btn-secondary {
    background-color: #535252 !important;
} */

/* Style for form steps */
.step {
    display: none;
}

/* Style for visible step */
.step.active {
    display: block;
}

/* Style for form fields */
.msf-form-field {
    margin-bottom: 20px;
}

.msf-button-prime {
    background-color: #2482BA;
    color: #fff;
    border-radius: 5px;
    border: none;
}

.msf-button-prime:hover {
    background-color: #18577E;
    color: #fff;
}

/* Style for buttons */
.msf-button {
    /* padding: 10px 20px; */
    /* background-color: #2482BA; */
    color: #2482ba;
    /* border: none; */
    border-radius: 5px;
    /* cursor: pointer; */
    border-color: #2482ba;
}

.msf-link {
    margin-top: 7px;
    /* padding: 14px 20px; */
    background-color: #6E6E6E;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.msf-button:hover {
    background-color: #2482ba;
}

.msf-link:hover {
    background-color: #535252;
    color: #ffffff;
}

.msf-form-field {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.msf-form-field input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

.msf-form-field .preview {
    margin-top: 10px;
}

.msf-form-field .class-icon {
    font-size: 45px;
}

.custom-file-label::after {
    content: "Elegir";
}
.custom-file-label:lang(en) {
    content: "Browse";
}

.input-group-prepend:hover {
    cursor: pointer;
}

@media (max-width: 767px) {
    #multi-step-form {
        padding: 20px 0px;
    }
  }