@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gagalin&display=swap');



/*STYLE ABA CADASTRO*/





/*CONTAINER ABA*/
body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 920px;
  background-color: rgb(255, 255, 255);
}

/*CONTAINER DO CARD CADASTRO*/
.ContainerCadastro {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  height: 920px;
  width: 400px;
  display: flex;
  justify-content: top;
  align-items: center;
  flex-direction: column;
  text-transform: uppercase;
  border-radius: 30px;
  position: relative;
}

/*BOTÃO VOLTAR*/
#btnvoltar {
  background-image: url('./imagens/voltar.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  left: 20px;
  top: 20px;
  position: absolute;
}

/*CONTAINER DA LOGO*/
.containerlogo {
  width: 100%;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

/*LOGO*/
#logo {
  width: 250px;
  height: 190px;
  background-image: url('./imagens/cadastro.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*CONTAINER DO FORMULARIO*/
.containerse {
  width: 100%;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: right;
  flex-direction: column;
}

/*FORMULARIO CADASTRO*/
.formulario_cadastro {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


/*INPUTS FORMULARIO*/
#nome {
  width: 100%;
  text-transform: uppercase;
  border-top: none;
  border-left: none;
  border-right: none;
}

#cpf {
  width: 100%;
  text-transform: uppercase;
  border-top: none;
  border-left: none;
  border-right: none;
}

#rg {
  width: 100%;
  text-transform: uppercase;
  border-top: none;
  border-left: none;
  border-right: none;
}

#data_nascimento {
  width: 100%;
  text-transform: uppercase;
  border-top: none;
  border-left: none;
  border-right: none;
}

#genero {
  width: 103%;
  text-transform: uppercase;
  border-top: none;
  border-left: none;
  border-right: none;
}

#msg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  font-size: 11px;
}

#endereco {
  width: 100%;
  text-transform: uppercase;
  border-top: none;
  border-left: none;
  border-right: none;
}

#telefone {
  width: 100%;
  text-transform: uppercase;
  border-top: none;
  border-left: none;
  border-right: none;
}

#email {
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
}

#confemail {
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
}


#senha {
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
}

#confsenha {
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
}



#nome,
#cpf,
#rg,
#data_nascimento,
#genero,
#endereco,
#telefone,
#email,
#confemail,
#senha,
#confsenha {
  margin-top: 20px;
  border-bottom: 2px solid black;
}

input::placeholder {
  color: black;
}

input:focus {
  outline: none;
  border-bottom: 2px solid black;
}



/*CONTAINER BOTÃO ENVIAR*/
.containerb {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: right;
  flex-direction: column;
}

/*BOTÃO ENVIAR*/
#confirmar {
  text-transform: uppercase;
  background-color: white;
  border-radius: 20px;
  color: black;
  border: solid black 1.5px;
  cursor: pointer;
  width: 100%;
  font-size: 13px;
}


/*BOTÃO PREENCHER AUTOMATICAMENTE DADOS*/
#simular1 {
  text-transform: uppercase;
  background-color: white;
  border-radius: 20px;
  color: black;
  border: solid black 1.5px;
  cursor: pointer;
  width: 80%;
  font-size: 13px;
  margin-top: 10px;
}

#confirmar:hover,
#simular1:hover {
  background-color: black;
  color: white;
}