@import url("global-styles.css");
@import url("header.css");
@import url("callout.css");
@import url("footer.css");
@import url("card.css");
@import url("article.css");

.main-requeriments {
    background-color: var(--section-secondary);
    padding: 20px 0 40px 0;
}

.main-form {
    padding: 10px 0;
    margin: auto;
}

.main-cta__paragraph span {
    font-weight: bold;
}

.main-application {
    display: grid;
    grid-template-columns: 1fr .4fr;
}

.application-content__title {
    width: 80%;
}

.main-cta,
.main-application__dowload {
    background-color: var(--section-secondary);
}

.main-application__dowload {
    display: flex;
    align-items: end;
    justify-content: center;
}

.main-application__button {
    margin-bottom: 20px;
}

.application-content__paragraph {
    width: 90%;
}

.main-application__paragraph a {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

.scholar-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px 5px;
}

.scholar-form__submit {
    margin: auto;
    width: 100%;
}

.main-application__item {
    padding: 40px 0;
}

.cta-info__title {
    width: 100%;
}

@media screen and (max-width: 995px) {
    .cta-info__title {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 900px) {
    .main-cta {
        grid-template-columns: 1fr;
    }

    .main-cta__date {
        margin-top: 10px;
    }

    .cta-data__icon {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 800px) {
    .main-cta {
        padding: 20px;
    }

    .main-cta__item {
        width: 100%;
    }

    .main-cta__info {
        padding: 10px;
        width: 90%;
    }

    .main-application { 
        grid-template-columns: 1fr;
        text-align: center;
    }

    .main-application__dowload {
        padding: 10px 0;
    }

    .main-application__button {
        margin: 0;
    }

    .application-content__title,
    .application-content__paragraph {
        width: 100%;
    }
}

@media screen and (max-width: 700px) { 
    .cta-info__title {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 585px) { 
    .cta-info__title {
        font-size: 1.1rem;
    }

    .cta-info__button {
        margin: 0 auto;
        padding: 5px;
    }

    .cta-info__title {
        width: 70%;
        border: none;
        padding: 0;
    }
}

@media screen and (max-width: 540px) { 
    .main-cta__paragraph {
        width: 100%;
    }

    .scholar-form {
        flex-direction: column;
    }

    .scholar-form__control {
        width: 100%;
    }
}

@media screen and (max-width: 390px) { 
    .main-cta__info {
        gap: 10px;
        flex-direction: column;
    }
    
    .cta-info__button,
    .cta-info__title {
        width: 90%;
        text-align: center;
    }

    .form-recaptcha__button {
        width: 95%;
    }
}