
body{

}
form {
  padding: 20px;
  margin: 0 auto;
  max-width: 800px;
  /*overflow: hidden;*/
  padding-left:96px;
}
form h1 {
  padding-bottom: 10px;
  margin-bottom: 25px;
  font-family: 'Open Sans';
  font-weight: 100;
  text-align: center;
  color: #6abee6;
  border-bottom: 1px solid #ccc;
}
form .row {
  margin-bottom: 25px;
  position: relative;
  
}
form input[type="text"], form input[type="password"], form textarea,form select {

  width: 90%;
  height: 40px;
   padding: 10px 10px 10px 248px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  color: #333;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
}
form textarea {
  height: auto;
  min-height: 50px;
  padding: 50px 10px 10px 10px;
}
form input[type="text"] + label, form input[type="password"] + label, form textarea + label, form select + label {
	width: 248px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 40px;
  line-height: 40px;
  font-size: 12px;
  font-weight: bold;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: white;
  background: #6abee6;
  border-radius: 3px 0 0 3px;
  transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
  transform: translateZ(0) translateX(0);
  padding-left:12px;
  padding-right:12px;
}
form textarea + label {

  width: 90%;
  border-radius: 3px 3px 0 0;
}
form input[type="text"]:focus, form input[type="password"]:focus {
  padding-left: 10px;
}
form textarea:focus {
  padding-top: 10px;
}
form input[type="text"]:focus + label, form input[type="password"]:focus + label {
  /*transform: translateZ(0) translateX(-100%);*/
  transform: perspective(600px) translateX(-100%) rotateY(80deg);
  margin-left: 60px;
}
form textarea:focus + label {
  transform: translateZ(0) translateY(-100%);
}
form input[type="checkbox"], form input[type="radio"] {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
form input[type="radio"] + label {
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-indent: -9999px;
  background: #ccc;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
}
form input[type="radio"] + label:before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  top: 50%;
  left: 50%;
  background: white;
  border-radius: 100%;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9) 0.1s;
  transform: translateZ(0) translate(-50%, -50%) scale(0);
}
form input[type="radio"]:checked + label {
  background: #6abee6;
}
form input[type="radio"]:checked + label:before {
  transform: translateZ(0) translate(-50%, -50%) scale(1);
}
form input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-indent: -9999px;
  background: #ccc;
  width: 60px;
  height: 30px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
}
form input[type="checkbox"] + label:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #6abee6;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9) 0.1s;
  transform: translateZ(0) scale(0);
}
form input[type="checkbox"] + label:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  display: block;
  height: 26px;
  width: 26px;
  background: white;
  border-radius: 100%;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
  transform: translateZ(0) translateX(0);
}
form input[type="checkbox"]:checked + label {
  background: #6abee6;
}
form input[type="checkbox"]:checked + label:after {
  left: calc(100% - 28px);
  transform: translateZ(0);
}
form button {
  position: relative;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  font-size: 12px;
  font-weight: bold;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: white;
  border: none;
  background: #6abee6;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
  transform: translateZ(0) translateX(0);
  z-index: 2;
  width: auto;
  margin-bottom:20px;
}
form button:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #01579B;
  height: 100%;
  width: 100%;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
  transform: translateZ(0) scale(0);
  z-index: -1;
}
form button:hover:before, form button:focus:before {
  transform: scale(1);
  transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
}
.div1{
    z-index: 9;
    margin-top: 96px;
    position: absolute;
    right: 0;
    padding: 20px;
   /* background-color: rgba(204, 204, 204, 0.27);*/
    border-radius: 57px 11px 10px 57px;
    padding-top: 56px;
    right: -133px;
   /* border: 2px solid #cccccc;*/
        border-right: 1px solid black;
}
.div2{
    display: inline-block;
    cursor:pointer; 
    width: 10px;
    height: 10px;
    background-color: #6abee6;
    padding: 5px;
    border: 8px solid #6abee6;
}
.logo{
  position: absolute;
  left: 39px;
  top: 10px;
}
.form{
  display: none;
}
.f{
  position: relative;
  padding-bottom: 20px;
  text-align: right;
}
.f span{
      position: relative;
    top: -8px;
    padding-right: 13px;
}



@keyframes infinite-spinning {
  from {
    opacity: 0;
      margin-top:3%;
  }
  to {
    opacity: 1;

       margin-top:0%;

  }
}
#form2 form {
  -webkit-animation: infinite-spinning 0.6s ; /* Safari 4+ */
  -moz-animation:    infinite-spinning 0.6s ; /* Fx 5+ */
  -o-animation:      infinite-spinning 0.6s ; /* Opera 12+ */
  animation:         infinite-spinning 0.6s ; /* IE 10+, Fx 29+ */

}


@media screen and (max-width : 760px){
	
	.label select{
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    color: #333;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
    / left: 0; /
    / margin-left: 20px; /
    / padding-left: 13px; /
    position: relative;
    margin-left:0!important;
}
.label label{
  width:100%!important;
}
	.div2, .f{
		display:none;
		}
		#div2,#f{
				display:block!important;

		}
  .div1{
    display: block;
  }
  .div1 {
    z-index: 9;
    margin-top: 96px;
  position: initial;
     right: 0; 
    padding: 20px;
  
    padding-top: 56px;
     right: -133px; 
     border: none; 
}
form input[type="text"], form input[type="password"], form textarea {
    width: 100%;
    height: 40px;
    padding: 10px 10px 10px 179px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    color: #333;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
    / text-align: center; /
}
form input[type="text"] + label, form input[type="password"] + label, form textarea + label {
   font-size: 9px;
       width: 171px;
}
form textarea+label{
  width: 100%
}

}
.label label{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 40px;
    line-height: 40px;
    /*font-size: 12px;*/
    font-weight: bold;
    padding-left: 9px;
    padding-right: 9px;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: white;
    background: #6abee6;
    border-radius: 3px 0 0 3px;
    transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
    transform: translateZ(0) translateX(0);
    width: 248px;

}
.label select{
    width: 78%;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    color: #333;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
    margin-left: 86px;

}
/***************/
.button-modifier{
      background: #6abee6;
    font-size: 14px;
    width: auto;
    margin: auto;
    display: -webkit-inline-box;
    padding: 6px;
    color: #fff;
}
.button-modifier{
      background: #6abee6;
    font-size: 14px;
    width: auto;
    margin: auto;
    display: -webkit-inline-box;
    padding: 8px;
    color: #fff;
    display: inline-block;
}
.button-modifier:hover{
     background: #0cc5f9;
    font-size: 14px;
    width: auto;
    margin: auto;
    display: -webkit-inline-box;
    padding: 8px;
    color: #fff;
}
.edition{
  padding-left: 33px;
}

.group-header{
      color: #494949;
    font-weight: 900;
    font-size: 14px;
}
.file-input .icone {
    height: 27px;
    width: 30px;
    background-color: #6abee6;
    position: absolute;
    right: 0px;
    top: 0px;
    overflow: hidden;
    background-image: url(../images/icone-rechercher.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 90% 90%;
    cursor: pointer;
}

@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
  select{
   text-indent: 39%;
  }
  }

@media and (-webkit-min-device-pixel-ratio:0) {
  select{
   text-indent: 39%;
  }
}
/* Chrome 29+ */
@media screen and(-webkit-min-device-pixel-ratio:0) {
   select{
   text-indent: 39%;
  }
}
/* Chrome 22-28 */
@media screen and(-webkit-min-device-pixel-ratio:0) {
  select{
   text-indent: 39%;
  }
}

.col-8{
    border-left: 1px solid;
    padding-right: 23px;
    padding-left: 26px;
}
@media screen and (max-width : 1146px){
  .form2{
    padding-left: 126px;
  }

}
@media screen and (max-width : 760px){
  .form2{
    padding-left: 0px;
  }

}


