.total{
    display: flex;
    flex-direction: column;
}
.contact{
    display: flex;
    height: 75vh;
    margin-block: 10%;
}
.contact .form{
    width: 50%;
    display: flex;
    background-color: #163E6A;
    padding: 2rem;
    border-radius: 50px 0 50px 0;
    flex-direction: column;
    justify-content: center;
}
.contact .form h4{
    color: #FFF;
    font-weight: bold;
}
.contact .form .form-group label{
    color: #FFF;
}
.contact .form .form-group .form-control{
    color: #FFF;
    background: none;
    border: 2px solid white;
}
.contact .form .form-group .form-control::placeholder{color: #FFF;}

.contact .form .form-group-btn .btn-contact{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 5rem;
    margin-top: 2rem;
    margin-inline: auto;
    font-size: 1.3rem;
    font-weight: bold;
    color: #163E6A;
    background:#FFF ;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    border-radius: 1px 8px 1px 8px;
}
/* IMG */
.contact .imagem{
    display: flex;
    align-items: center;
    position: relative;
}
.contact .imagem .img1{
    height: 75%;
}
.contact .imagem a {
    position: absolute;
    bottom: 10px; /* Ajuste conforme necessário */
    right: 0px; /* Ajuste conforme necessário */
    width: 50px; /* Ajuste o tamanho do ícone conforme necessário */
    height: auto;
   
  }
  
.contact .img2{
    width: 5vw;
    border-radius: 50px 50px 0 0;
    border: 5px solid white;
}
@media(max-width:1000px){
    .contact .imagem{display: none;}
    .contact{justify-content: center;}
    .contact .form{width: auto;} 
}