html, body {
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: rgb(229, 223, 223);
    display: block;
    box-sizing: border-box;
}
.img-fundo {
    position: fixed; 
    inset: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 1; 
    opacity: 40%; 
}
.container {
    position: relative;
    margin-top: 12vh; 
    background-color: white;
    border-radius: 0.2rem;
    padding: 2rem;
    width: 80%;
    left: 50%;
    height: 80%;
    transform: translateX(-50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
    box-sizing: border-box;
}
.title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: "Outfit", sans-serif;
    margin-top: 3rem;
}
.subtitle{
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: "Roboto Slab", serif;
    line-height: 1.6;
    
}
.text {
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: "Roboto Slab", serif;
    margin-top: 1.2rem;
}
.logo-portal {
    position: relative;
    width: 11rem;
    height: auto;
    margin-top: -2rem;
    left: 65%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.logo-dp {
    position: relative;
    width: 10rem;
    height: auto;
    margin-top: -6rem;
    left: 68.5%;
    border: none;
}






.outfit-uniquifier {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}


.roboto-slab-uniquifier {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}



/*Estilos para dispositivos móveis*/
@media (max-width: 768px) {
.container {
    width: 95%;
    height: auto;
    margin-top: 2vh;
    padding: 1rem;
    margin-bottom: 2rem;
}
.text{
    font-size: 1.04rem;

}
.logo-portal{
    width: 8rem;
    left: 8%;
    margin-top: -0.3rem;
}
.logo-dp{
    width: 7rem;
    left: 18%;
    margin-top: -5rem;
}
}