
.container {
	max-width:550px;
	width:200%;
	margin:0 auto;
	position:relative;
  display: flex;
  color:#191466;
}


body {
  background:#ffff;
  font-family: 'Roboto-Regular';
}
.hh2{
  color:#191466;
  text-align:center;
  font-size:3em;
}
.warpper{
  display:flex;
  flex-direction: column;
  align-items: center;
}
.tab{
  font-family: 'Calibri_Bold';
  cursor: pointer;
  padding:10px 60px;
  margin:0px 10px;
  background:#191466;
  display:inline-block;
  color:#fff;
  border-radius:0px 0px 0px 0px;
  box-shadow: 0 0.5rem 0.8rem #191466;
}
  
  ::placeholder{
  color: white;
  padding: 66px;
  }

.panels{
  background:#fffffff6;
  box-shadow: 0 2rem 2rem #787879;
  min-height:200px;
  width:100%;
  max-width:500px;
  border-radius:3px;
  overflow:hidden;
  padding:20px;  
}
.panel{
  display:none;
  animation: fadein .8s;
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
.panel-title{
  font-size:1.5em;
  font-weight:bold
}
.radio{
  display:none;
}
#one:checked ~ .panels #one-panel,
#two:checked ~ .panels #two-panel,
#three:checked ~ .panels #three-panel{
  display:block
}
#one:checked ~ .tabs #one-tab,
#two:checked ~ .tabs #two-tab,
#three:checked ~ .tabs #three-tab{
  background:#fffffff6;
  color:#000;
  border-top: 6px solid #949494;
}


label {
  display:block;
  margin-top:20px;
  letter-spacing:1px;
}
.formulario {

  display:block;
  margin:0 auto;
  width:510px;
  color: #666666;
  font-family:Roboto-Regular;
}
form {
  margin:0 auto;
  width:400px;
}


input, textarea {
  width:100%;
  height:55px;
  background: #ffffff;
  border:2px solid #3775C4;
  padding:10px;
  margin-top:5px;
  font-size:20px;
  color:#050505;
  border-radius: 15px;
}


.selec{
  width:50%;
  height:50%;
  background:#3775C4;
  border:2px solid #3775C4;
  padding:10px;
  margin-top:5px;
  font-size:18px;
  color:#ffffff;
  border-radius: 10px;

}

.txt{
  
  font-size:20px;
  color:#030303;
  padding:10px;
}
textarea {
  height:150px;
}

#submit {
  width:54px;
  height:36px;
  border:none;
  margin-top:20px;
  cursor:pointer;
}
















