/* Estilos para formularios tipo específico */

* {
    font-family: 'Work Sans', sans-serif !important;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

footer {
    padding-top: 1em;
}

/* Breakpoints */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.container-section-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.form-section__main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .container-section-form {
        grid-template-columns: 7fr 3fr;
    }
}

@container (max-width: 500px) {
    .grid--x2 {
        grid-template-columns: 1fr !important;
    }
}

.title_principal {
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.box-primary {
    background: var(--color-primary);
    padding: 1rem;
    font-weight: bold;
    color: white;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}

.title_tipo {
    text-align: center;
    text-decoration: underline;
}

.section-box-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .5em;
    justify-content: space-between;
}



@media (min-width: 48rem) {
    .grid--x2 {
        grid-template-columns: 1fr;
    }
}

.input-text {
    margin: 0;
}

.footer-box {
    background: var(--color-primary);
    padding: 2rem;
}

.footer-box * {
    text-align: center;
    color: #fff !important;
}

.site-header {
    display: none;
}

#custom-form-section {
    background: rgb(244, 247, 252);

    padding-bottom: 2rem;
}

.custom-form-section_header {
    padding: 1rem;
    background: white;
}

.site-header__logo img {
    max-width: 8rem;
}

.icon-text {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.icon-text .icon-text_text {
    font-size: 14px;
}

.social_media {
    gap: 10px;
}

.custom-form-section_header .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-section__sidebar {
    background: white;
    padding: 2rem;
    margin-bottom: 1rem;
}

.header-logo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.header-logo .title_principal {
    flex-grow: 1;
}

.access-link{
    text-decoration: underline;
    color: black;
    font-size: 14px;
}

.list-contact, .list-social{
    display: none;;
}

@media (min-width: 768px) {
    .section-box-info {
        flex-direction: row;
    }
    .custom-form-section_header .container {
        flex-direction: row;
        align-items: center;
    }

    .header-logo {
        flex-direction: row;
    }

}