@import "components/buttons.css";
@import "components/variables.css";

html {
    background-color: #FAF7F7FF;
}

.navbar-form {
    max-width: 1030px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
}

.navbar-form #modalBtn {
    border: unset;
    background-color: unset;
    color: black;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.text-mobile {
    display: none;
}

.navbar-form #modalBtn img {
    width: 10px;
    margin-right: 10px;
    transform: rotate(180deg);
}

.form-header  {
    max-width: 1030px;
    margin: 0 auto;
    padding: 40px 20px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.form-info {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: #D21053FF;
}

.form-title {
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    width: 50%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.form-step {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    font-size: 14px;
}


.form-step .step-title img {
    display: none;
}

.form-step .step-title {
    display: flex;
    font-weight: 500;
    color: #000000FF;
    margin-bottom: 10px;
}

.form-step .active-mobile .step-title img,
.form-step .active .step-title img {
    display: flex;
}
.form-step .active-mobile .step-title,
.form-step .active .step-title {
    color: #D21053FF;
}

.form-step .step-title img {
    margin-right: 10px;
}

@media (max-width: 1200px) {
    .form-step {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .form-title {
        width: 100%;
        font-size: 25px;
    }

    .form-step {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .text-mobile {
        display: block;
    }

    .text-desktop {
        display: none;
    }
}


.form-step .active,
.form-step .active-mobile {
    border-bottom: 1px solid #D21053FF !important;
    padding-bottom: 10px;
}




.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    font-family: 'Poppins', sans-serif;
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    max-width: 846px;
    width: 90%;
}

.modal-title {
    margin-top: 100px;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
}

.modal-info {
    max-width: 450px;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    margin: 0 auto 30px;
}

.modal-footer {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
    padding-bottom: 100px;
    gap: 20px;
}

.modal-footer a {
    max-width: 74%;
}

.modal-footer .btn {
    width: 100%;
}

@media (max-width: 800px) {
    .form-step {
        padding: 0;

    }
    .form-step .active {
        display: none;
    }

    .form-step .active-mobile {
        display: block;
    }

    [id^="step"] {
        display: none;
    }


    [id^="step"].active-mobile {
        display: block;
    }

}
@media (max-width: 500px) {
    .modal-footer a {
        max-width: 100%;
    }

    .modal-footer {
        flex-direction: column;
        padding-bottom: 30px;
    }

    .modal-footer .btn {
        width: auto;
    }
}


.close {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    float: right;
    display: flex;
    align-items: center;
}

.close img {
    margin-right: 10px;
}

.btn-close {
    background-color: var(--color-pink);
    border: none;
    color: #aaaaaa;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}