/* Global */
body {
  background:#282828;
  padding-top: 50px;
  font-family: 'Poppins', sans-serif;
}
.wrapper {
  width: 1400px;
  margin:0 auto;
  background:#fff;
  height: 800px;
}

/* Contenu */
/* Colonnes */
.wrapper > * {
  display: inline-block;
  vertical-align: top;
  height: 100%;
}
/* Colonne de gauche */
.register-bg {
  width: 385px;
  background:url('../img/form-img.jpg') center/cover;
  position: relative;
}
.register-bg:hover h1 {
  transform:scale(1.5) translateY(-50%);
}
h1 {
  font-weight:normal;
  font-size: 14px;
  color:#fff;
  text-align: center;
  position: absolute;
  width: 100%;
  top:50%;
  transform:translateY(-50%);
  transition:.3s all ease-in-out;
}
h1 span {
  text-transform: uppercase;
  display: block;
  font-size: 26px;
  font-weight: 900;
}
/* Colonne de droite */
.register-form {
  width: 1015px;
  padding:100px;
}
.col {
  display: inline-block;
  width:calc(50% - 30px);
  vertical-align: top;
}
.col:first-child {
  margin-right: 60px;
}

/* Formulaire */
.form-block {
  margin-bottom: 15px;
  height: 80px;
}
label, .form-block div {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}
[type="radio"]+label {
  display: inline-block;
  margin-right: 15px;
}
[type="text"],[type="email"],[type="tel"],[type="number"], select {
  width: 100%;
  padding:15px 20px;
  border-radius:3px;
  border:1px solid #eee;
}
input:focus, select:focus {
  outline:1px solid lightgreen;
}
.col:nth-of-type(2) .form-block:last-child {
  text-align: right;
}
.col:nth-of-type(2) .form-block:last-child * {
  cursor:pointer;
  padding:15px;
  border-radius:5px;
  margin-left: 5px;
}
[type="submit"] {
  background:green;
  border:none;
  color:#fff;
}
[type="submit"]:hover {
  background:goldenrod;
}
[type="reset"] {
  background:transparent;
  border:1px solid #eee;
  color:gray;
}
[type="reset"]:hover {
  background:green;
  border:1px solid transparent;
  color:#fff;
}
.col:first-child label::after {
  content:" *";
  color:brown;
}









































































/* .form-block {
  margin-bottom: 15px;
  height: 80px;
}
label, .form-block div {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
[type="radio"]+label {
  display: inline-block;
  margin-right: 15px;
  text-transform: capitalize;
}
[type="text"], [type="email"], [type="number"], [type="tel"], select  {
  width: 100%;
  height: 50px;
  border-radius:5px;
  border:1px solid #ebebeb;
  padding:0 20px;
}
input:focus {
  outline:1px solid lightgreen;
}
.col+.col .form-block:last-child {
  text-align: right;
}

.col+.col .form-block:last-child * {
  text-transform: uppercase;
  border-radius:5px;
  padding:15px;
  margin-left: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor:pointer;
}
[type="submit"] {
  background:#329e5e;
  border:none;
  color:white;
}
[type="submit"]:hover {
  background:#1e693c;
}
[type="reset"] {
  background:#fff;
  border:1px solid #ebebeb;
  color:#999;
}
[type="reset"]:hover {
  background:#329e5e;
  border:1px solid #329e5e;
  color:white;
} */