@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-image: url("fundo.jpg");
    background-repeat: no-repeat; /* não repetir imagem */
    background-size: cover; /* tirar o que sobrou da imagem, deixar ela em tela cheia */
    background-position: top center;
    background-attachment: fixed; /* a imagem se mexe conforme o scrool*/
    
}

div#fundo_cinza {
    background-color: rgba(0, 0, 0, 0.458);
    width: 100%;
    position: absolute;
    box-sizing: border-box;
    

}

div#container {
    display: flex;
    width: 950px;
    justify-content: space-around;
    margin: 100px auto auto auto;
    
    
}

div#descricao {
    width: 300px;
    height: 700px;
    background-color: white;
    border-radius: 10px;
    box-sizing: border-box; /*faz com que a img se adeque a div*/
    overflow: hidden; /*faz com que a img se adeque a div*/
    margin-bottom: 50px;
   
 
}

div#form {
    width: 600px;
    height: 600px;
    background-color: white;
    border-radius: 10px;
    overflow-y: hidden;
   
    
}

img {
    width: 100%;
    background-color: white;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.21); /*horizontal verfical espalhamento sombra da imagem*/

    
   
}

div#processo {
    text-align: justify;
    margin: 30px;
  

}

#form > iframe {
    width: 100%;
    height: 100%;
    border: none;
 
    
}




