.site-searcher form {
width: 60%;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
height: min-content;
text-align: center;

}

.site-searcher form .form-group {
width: 50%;
display: flex;
flex-direction: column;
gap: 1rem;
padding-bottom: 2rem;
z-index: 9;
}

#reset-btn {
display: none;
cursor: pointer;
font-size: 1.5rem;
background-color: transparent;
border: none;
color: #0a0061;
}

#comunidad,
#situacion,
#sector-empresa,
#sector-quiero-formarme {
background-color: #23282d;
color: #ffffff;
border: 5;
border-radius: 5px;
padding: .5rem;
margin-bottom: 1rem;
opacity: 0.8;
}

#label-comunidad,
#label-situacion,
#label-sector-empresa,
#label-sector-quiero-formarme {
display: flex;
flex-direction: column;
gap: 0.5rem;


}

#label-comunidad h5, /* etiquetas de texto  */ 
#label-situacion h5,
#label-sector-empresa h5,
#label-sector-quiero-formarme h5 {
font-weight: 600;
color: #ffffff;
padding: .15rem;
text-align: center;
}

input {
height: 60px;
}

#situacion,
#label-situacion,
#sector-empresa,
#label-sector-empresa,
#sector-quiero-formarme,
#label-sector-quiero-formarme,
#buscar-btn,
#buscar-btn-grid {
display: none;
width: 100%;
}

#sector-empresa,
#sector-quiero-formarme {
width: 100%;
color: #23282d;
}

.buttons-group {
display: flex;
gap: 1rem;
align-items: center;
justify-content: center;
z-index: 9;

}

#buscar-btn {
width: 50%;
background-color: #002147;
border-radius: 10px;
align-items: center;
}

@keyframes slideInFromBottom {
0% {
transform: translateY(100%);
opacity: 0;
}

100% {
transform: translateY(0);
opacity: 1;
}
}

.fadeOut {
animation: fadeOut 0.5s ease-in-out forwards;
}

@keyframes fadeOut {
0% {
opacity: 1;
}

100% {
opacity: 0;
}
}

@media (max-width: 900px) {
.site-searcher form {
width: 60%;
}

.site-searcher form .form-group {
width: 100%;
}
}

@media (max-width: 767px) {
.site-searcher form {
width: 90%;
}

.site-searcher form .form-group {
width: 100%;
}
}