.steps {
    width: 400px;
}

.alertify {
    border: none!important;
}
.form {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background-color: #ffffff;
    padding: 20px;
    width: 400px;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

@media screen and (max-width: 768px) {
    .form {
        width: 100%;
    }
    .steps {
        width: 100%;
    }
}

::placeholder {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.form button {
    align-self: flex-end;
}

.flex-column > label {
    color: #151717;
    font-weight: 600;
}

.inputForm {
    border: 1.5px solid #ecedec;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    transition: 0.2s ease-in-out;
}

.input {
    margin-left: 10px;
    border-radius: 10px;
    border: none;
    width: 85%;
    height: 100%;
}

.input:focus {
    outline: none;
}

.inputForm:focus-within {
    border: 1.5px solid #29A414;
}

input:-webkit-autofill,
textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset; /* Define um fundo branco */
    -webkit-text-fill-color: black; /* Define a cor do texto */
}

.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.flex-row > div > label {
    font-size: 14px;
    color: black;
    font-weight: 400;
}

.span {
    font-size: 14px;
    margin-left: 5px;
    color: #2d79f3;
    font-weight: 500;
    cursor: pointer;
}

.button-submit {
    margin: 20px 0 10px 0;
    background-color: #151717;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    cursor: pointer;
}

.button-submit:hover {
    background-color: #252727;
}

.p {
    text-align: center;
    color: black;
    font-size: 14px;
    margin: 5px 0;
}

.btn {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    border: 1px solid #ededef;
    background-color: white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.btn:hover {
    border: 1px solid #2d79f3;;
}


/* stp */

.container-pg {
    align-items: center;
    justify-content: space-between;
    flex: 2 0 auto;
    width: 100%;
}


.progress-tracker {
    display: flex;
    margin: 10px auto;
    padding: 0;
    list-style: none;
    counter-reset: item;
    padding-left: 10px;
    padding-right: 10px;
}

.progress-step {
    display: block;
    position: relative;
    flex: 1 1 0%;
    padding: 0;
    min-width: 34px;
}

.progress-step:last-child {
    flex-grow: 0;
}

.progress-step:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: calc((34px/2) + 1.5em);
    left: 45px;
    width: calc(100% - 45px - 10px);
    height: 8px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.progress-marker {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 20;
    width: 34px;
    height: 34px;
    font-weight: bold;
    border-radius: 50%;
}

.progress-step .progress-marker {
    color: #fff;
    background-color: #cfcfcf;
}

.progress-step::after {
    background-color: #cfcfcf;
}

.progress-step.is-active .progress-marker {
    background-color: #cfcfcf;
}

.progress-step.is-complete .progress-marker {
    background-color: #29A414;
}

.progress-step.is-running .progress-marker {
    background-color: #29A414;
}

.progress-step.is-complete::after {
    /*background: linear-gradient(to right, #75CD00, #cfcfcf);*/
    background: linear-gradient(to right, #75CD00, #75CD00);
}

.progress-step.is-running::after {
    /*background: linear-gradient(to right, #75CD00, #cfcfcf);*/
    background: linear-gradient(to right, #75CD00, #cfcfcf);
}

.progress-text {
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
    font-size: 0.9em;
    padding-right: 0;
    padding-left: 0;
    transform: translateX(calc(-50% + (34px/2)));
}

.progress-text.multi-line {
    display: flex;
    flex-direction: column;
    transform: translateX(calc(-50% + (34px/2))) translateY(-14px);
}

.progress-marker.multi-line {
    transform: translateY(-12px);
}

.count:before {
    content: counter(item) " ";
    counter-increment: item;
}

.checkmark:after {
    content: " ";
    counter-increment: item;
    display: block;
    width: 0.3em;
    height: 0.8em;
    border: solid white;
    border-width: 0 0.1em 0.1em 0;
    position: absolute;
    left: 0.9em;
    top: 34%;
    margin-top: -0.2em;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}