body {
    background: #CEE5F5 url(./image-front/image_back.png); 
    color: #fff; 
    background-attachment: fixed; 
    background-repeat: repeat-x; 
    background-size: 100%;
}

.formdiv-conteiner{
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    overflow: auto;
    
}
/* .formdiv{
    width: 600px;
    height: 500px;
    position: fixed;
    top: 20%;
    left: 40%;
    margin: -125px 0 0 -125px;
    background-image: url(/image/convert.png);
  background-repeat: repeat-x; 
  background-size: 100%;
} */

form div{
    width: auto;
    height: auto;
    margin: 5px 5px 5px 5px;
}

.group{
    position: relative;
    margin-bottom: 30px;
    top: 195px;
    left: 40px;
}
.group-age{
    position: relative;
    top: 139px;
    left: 200px;
}
.group-city{
    position: relative;
    top: 130px; 
}
.group-become{
    position: relative;
    top: 75px;
    left: 200px;
    color: #5264AE;
}
.group-textA{
    position: relative;
    top: 80px;
}
.group-mail{
  position: relative;
  left: 140px;
  top: 300px;
}
.group-gmail{
  position: relative;
  top: -55px;
  left: 350px;
  
}
.email_input{
  color: #c1272d;
  font-size: 13px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  padding: 0px;
  display: block;
  width: 100%;
  max-width: 200px;
  border: none;
  border-bottom: 1px solid darkblue;
  background-color: transparent;
}
.textA{
    top: -27px;
    font-size: 16px;
    font-family: 'Brush Script MT', cursive;
    font-style: initial;
    color: #5264AE;
    background: linear-gradient(45deg, #0B2349 33%, #0D61BC 66%, #8AA9D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.textArea_input{
    background-color: transparent;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; 
}

input{
   color: #c1272d;
  font-size: 16px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  padding: 0px;
  display: block;
  width: 100%;
 max-width: 150px;
  border: none;
  border-bottom: 1px solid darkblue;
  background-color: transparent; 
}
input:focus {
    outline: none;
  }
  select{
    color: #c1272d;
    font-size: 15px;
    font-family: 'Brush Script MT', cursive;
    padding: 0px;
    display: block;
    max-width: 150px;
    border: none;
    border-bottom: 1px solid darkblue;
    background-color: transparent; 
  }

  label {
    color: #5264AE;
    font-family: 'Brush Script MT', cursive;
    font-size: 16px;
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 0px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
  }
  
  /* active state */
  input:focus ~ label, input:valid ~ label {
    top: -20px;
    left: 0px;
    font-size: 16px;
    font-family: 'Brush Script MT', cursive;
    font-style: initial;
    color: #5264AE;
    background: linear-gradient(45deg, #0B2349 33%, #0D61BC 66%, #8AA9D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* BOTTOM BARS ================================= */
  .bar {
    position: relative;
    display: block;
    width: 150px;
  }
  .bar:before {
    content: "";
    height: 2px;
    width: 0;
    bottom: 0;
    position: absolute;
    background:linear-gradient(0.25turn,#e66465, #9198e5);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
  }

  .bar:after{
    content: "";
    height: 2px;
    width: 0;
    bottom: 0;
    position: absolute;
    background:linear-gradient(0.25turn, #9198e5,#e66465);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
  }

  .bar:before {
    left: 50%;
  }
  .bar:after {
    right: 50%;
  }
  
  /* active state */
  input:focus ~ .bar:before,
  input:focus ~ .bar:after {
    width: 50%;
  }