/* CSS Document */
.container_01 h2 {
  text-align: center;
  line-height: 1.2;  /* X------ Diminui a altura da Linha no Texto */
}
.co_corpo {
  background-image: url('../imagens/fundo.png');
  background-color: rgba(255, 255, 255, 0.95);
  background-blend-mode: overlay;
  max-width: 100%;
  /*position: relative;*/
  width: 100%;   /* Largura estende por toda p?gina da div */
  height: auto;   /* Altura da div */ 
  padding-top: 40px;
  padding-bottom: 20px;
  display: flex;
  flex-direction : column ;  
}

.tex_01 {
  margin-left : 5%;
  color : #808080;
  font-size: 18px;
  font-family: "Times New Roman", Times, serif;
}
.tex_02 {
  line-height: 1.2;  /* X------ Diminui a altura da Linha no Texto */
}
/* X------------------------------------------ Select  */
.dropdown {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 40px; /*Altura - ALTERE PARA O TAMANHO DESEJADO*/
  width: 600px; /*Comprimento - ALTERE PARA O TAMANHO DESEJADO*/
  margin-left : 5%;
  background: #FFFFFF;
  border: 1px solid;
  border-color: #808080 #808080 #808080;
  border-radius: 3px;
  background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06));
  background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06));
  background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06));
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.06));
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);  
}
.dropdown:before, .dropdown:after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 15px; /*ALTERE PARA O TAMANHO DESEJADO*/
  right: 10px;
  width: 0;
  height: 0;
  border: 4px dashed;
  border-color: #888 transparent;
  pointer-events: none;
}
.dropdown:before {
  border-bottom-style: solid;
  border-top: none;
}
.dropdown:after {
  margin-top: 7px;
  border-top-style: solid;
  border-bottom: none;
}
.dropdown-select {
  position: relative;
  width: 200%;
  margin: 0;
  padding: 6px 8px 6px 10px;
  height: 40px; /*ALTERE PARA O TAMANHO DESEJADO*/
  line-height: 30px; /*ALTERE PARA O TAMANHO DESEJADO*/
  font-size: 18px;
  color: #62717a;
  text-shadow: 0 1px white;
  /* Fallback for IE 8 */
  background: #f2f2f2;
  /* "transparent" doesn't work with Opera */
  background: rgba(0, 0, 0, 0) !important;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
}
.dropdown-select:focus {
  z-index: 3;
  width: 100%;
  color: #394349;
  outline: 2px solid #49aff2;
  outline: 2px solid -webkit-focus-ring-color;
  outline-offset: -2px;
}
.dropdown-select > option {
  margin: 3px;
  padding: 6px 8px;
  text-shadow: none;
  background: #f2f2f2;
  border-radius: 3px;
  cursor: pointer;
}

/* X------------------------------------------ Imput */
input[type=text] {
  height: 40px; /*Altura - ALTERE PARA O TAMANHO DESEJADO*/
  width: 600px; /*Comprimento - ALTERE PARA O TAMANHO DESEJADO*/
  padding: 12px 10px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-left : 5%;
}

input[type=submit] {
  width: 600px; /*Comprimento - ALTERE PARA O TAMANHO DESEJADO*/
  background-color: #ccd8f2;
  color: #808080;
  padding: 14px 20px;
  margin-left : 5%;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: rgba(204,216,242,0.8);
}
textarea {
  margin-left : 5%;
  width: 600px;
  height: 200px
}
/* X---------------- Diminuição da Tela ------------- */
@media screen and (max-width:900px) {
  .co_corpo {
    display: block;
  }  
  .co_corpo div { 
    width: 92%;
  } 
  input[type=text] {
    width: 92%;
  }
  .co_corpo textarea {
    width: 92%;
  }  
  input[type=submit] {
    width: 92%; 
  }  
}
@media screen and (max-width:320px) {
  .co_corpo {
    text-align: center;
  }  
}