@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.ayuda-container{
    display: flex;
}
.ayuda-container_form{
    width: 50%;
}
.ayuda-container_img{
    width: 50%;
}
.btn-ayuda-ext{
    background-color: #2d572c;
	padding: 0.5rem 1rem;
	color: #fff;
	border: 0px;
	border-radius: 0.5rem;
}
body{
    /* max-height: 100vh;
    height: 100vh; */
    display: grid;
    place-items: center;
}
.ayuda-person-img{
    position: absolute;
    width: 53rem;
    bottom: 65px;
}
.footer-ayuda{
    position: absolute;
    bottom: 0px;
    height: 65px;
    background-color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 -3px 3px 3px rgba(39, 39, 39, 0.2);
    width: 100%;
}

.container-title-icon {
    display: flex;
    gap: 20px;
}
.container-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.container-buttons {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.container-buttons button:first-child {
    background-color: #FFF;
    color: #000;
    border-radius: 5px;
    border: 2px solid #353535;
    width: 156px;
    height: 33px;
}

.container-buttons button:nth-child(2) {
    border-radius: 5px;
    width: 148px;
    height: 33px;
}

@media screen and (max-width: 767px) {
    .ayuda-container{
        flex-direction: column;
    }
    .ayuda-container_form, .ayuda-container_img{
        width: 100%;
    }
    .ayuda-person-img{
        position: relative;
        width: 60%;
        bottom: unset;
    }
    .footer-ayuda{
        position: relative;
        bottom: unset;
    }
    
}