/* CSS reset */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  margin: 10px;
}

a {
  text-decoration: none;
}

/* esconde as ancoras da tela */
a.links {
  display: none;
}

/* content que contem os formulários */
.content {
  width: 500px;
  margin: 0px auto;
  position: relative;
}

/* formatando o cabeçalho dos formulários */
h1 {
  font-size: 48px;
  color: #023E8A;
  padding: 10px 0;
  font-family: Arial, sans-serif;
  font-weight: bold;
  text-align: center;
  padding-bottom: 30px;
}


p {
  margin-bottom: 15px;
  font-weight: bold;
}
p:first-child {
  margin: 0px;
}
label {
  color: #000;
  position: relative;
}

/**** advanced input styling ****/
/* placeholder */
::-webkit-input-placeholder {
  color: #bebcbc;
  font-style: italic;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #bebcbc;
  font-style: italic;
}
input {
  outline: none;
}
/* deixar tudo alinhado */
input:not([type="checkbox"]) {
  width: 95%;
  margin-top: 4px;
  padding: 10px;
  border: 1px solid #0d0d0d;

  -webkit-border-radius: 3px;
  border-radius: 3px;

  /* cor da borda da linha */
  -webkit-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset;
  box-shadow: 0px 1px 4px 0px rgba(137, 136, 136, 0.6) inset;

  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.submit {
    display: flex;
    flex-direction: row-reverse;
    
}

/*estilo do botão cadastrar*/
input[type="submit"] {
  width: 10% !important;
  cursor: pointer;
  background: #0077B6;
  padding: 8px 5px;
  color: #fff;
  font-size: 20px;
  border: 1px solid #fff;
  margin-bottom: 10px;
  text-shadow: 0 1px 1px #333;

  -webkit-border-radius: 5px;
  border-radius: 5px;

  transition: all 0.2s linear;

}
input[type="submit"]:hover {
  background: #4ab3c6;
}

/* estilos para para ambos os formulários */
#cadastro {
  position: absolute;
  top: 0px;
  width: 88%;
  padding: 18px 6% 60px 6%;
  margin: 0 0 35px 0;
  background: rgb(247, 247, 247);
  border: 1px solid rgba(147, 184, 189, 0.8);
}



.escolha {
  margin-bottom: 8px;
}

select,
option {
  width: 1040px;
  height: 40px;
  font-size: 15px;
}

option {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


.submit a{
     width: 10% !important;
  cursor: pointer;
  background: #0077B6;
  padding: 10px 0px 0px 0px;
  color: #fff;
  font-size: 20px;
  border: 1px solid #fff;
  margin-bottom: 10px;
  text-shadow: 0 1px 1px #333;
  transform: translatey(2px) scaleY(0.9);
  margin-right: 20px;
  text-align: center;

  -webkit-border-radius: 5px;
  border-radius: 5px;

  transition: all 0.2s linear;
}
.submit a:hover {
  background: #4ab3c6;
}





























































































































































































































































































































































































































































































































































































































































































































































































































































































