html {
  font-size: 13px;
  background-color: #eef0f7; }

body {
  font-family: "Helvetica Neue LT Std", sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column; }

h1, h2, h3, h4 {
  margin: inherit; }

aside {
  background: url("../images/bg.jpg") no-repeat center center;
  -webkit-background-size: cover;
  background-size: cover;
  color: #f5f5e2;
  flex: 0 0 33%;
  padding: 3rem 3rem; }
  aside .logo {
    width: 195px;
    margin-bottom: 2.5rem; }
  aside h1 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.9rem; }
  aside h2 {
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-size: 2.36rem; }

main {
  background-color: #eef0f7;
  padding: 1.5rem 2.5rem; }

.column:not(:last-child) {
  margin-bottom: 1.5rem; }

fieldset {
  border: 0;
  background-color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 2rem;
  font-family: "Arial", sans-serif;
  display: flex;
  flex-direction: column; }
  fieldset h4 {
    font-family: "Helvetica Neue LT Std", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1e1d1c;
    margin-bottom: 2rem; }
    fieldset h4 span {
      vertical-align: middle; }
  fieldset .icone {
    width: 2.5rem;
    height: 2.5rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem; }
    fieldset .icone-user {
      background: #f9ad81 url("../images/user.png") no-repeat center center;
      -webkit-background-size: contain;
      background-size: contain; }
    fieldset .icone-mail {
      background: #f47f8d url("../images/mail.png") no-repeat center center;
      -webkit-background-size: contain;
      background-size: contain; }
    fieldset .icone-certif {
      background: #8781bd url("../images/certif.png") no-repeat center center;
      -webkit-background-size: contain;
      background-size: contain; }
  fieldset:not(:last-child) {
    margin-bottom: 1.5rem; }

.fields {
  flex: 1 1 100%; }

.field {
  display: flex;
  flex-direction: column; }
  .field:not(:last-child) {
    margin-bottom: 1.4rem; }
  .field input {
    outline: 0;
    border: 2px solid #e7e8ef;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #e7e8ef;
    color: #5b5e68;
    height: 2.5rem;
    padding: 0 1.2rem;
    box-sizing: border-box; }
    #user .field input:focus {
      border: 2px solid #f9ad81; }
    #mail .field input:focus {
      border: 2px solid #f47f8d; }
  .field label {
    margin-bottom: 0.5rem;
    color: #363740; }
    .field label.required::after {
      content: "*";
      margin-left: 0.3rem;
      color: #d1102b; }

.checkbox {
  --background: #e7e8ef;
  --border: #e7e8ef;
  --border-hover: #BBC1E1;
  --border-active: #8781bd;
  --tick: #fff;
  position: relative;
  display: inline-flex;
  align-items: center; }
  .checkbox input,
  .checkbox svg {
    width: 21px;
    height: 21px;
    display: block; }
  .checkbox span {
    vertical-align: middle;
    margin-left: 0.5rem;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -ms-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s; }
  .checkbox:hover {
    cursor: pointer; }
    .checkbox:hover span {
      color: #8781bd; }
  .checkbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    outline: none;
    background: var(--background);
    border: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border-radius: 4px;
    transition: box-shadow .3s;
    box-shadow: inset 0 0 0 var(--s, 1px) var(--b, var(--border));
    flex: 0 0 auto;
    display: inline-block;
    vertical-align: middle; }
    .checkbox input:hover, .checkbox input:focus {
      --s: 2px;
      --b: var(--border-hover); }
    .checkbox input:checked {
      --b: var(--border-active); }
  .checkbox svg {
    pointer-events: none;
    fill: none;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--stroke, var(--border-active));
    position: absolute;
    top: 0;
    left: 0;
    width: 21px;
    height: 21px;
    transform: scale(var(--scale, 1)) translateZ(0); }
  .checkbox.path input:checked {
    --s: 2px;
    transition-delay: .4s; }
    .checkbox.path input:checked + svg {
      --a: 16.1 86.12;
      --o: 102.22; }
  .checkbox.path svg {
    stroke-dasharray: var(--a, 86.12);
    stroke-dashoffset: var(--o, 86.12);
    transition: stroke-dasharray .6s, stroke-dashoffset .6s; }

footer {
  display: flex;
  align-items: center;
  justify-content: center; }

.btn {
  --hover: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-family: "Helvetica Neue LT Std", sans-serif;
  font-weight: 500;
  min-width: 150px;
  background: #d21242;
  border: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  height: 2.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s; }
  .btn:hover {
    box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
    transform: translateY(-0.25em); }
  .btn:not(:last-child) {
    margin-right: 1rem; }
  .btn-secondary {
    background: #ffc3d2;
    color: #d21242; }

@media screen and (min-width: 640px) {
  form {
    display: flex;
    flex-wrap: wrap; }
    form .column {
      flex: 1 1 50%;
      box-sizing: border-box;
      padding: 0 5px; }

  footer {
    flex: 1 1 100%; } }
@media screen and (min-width: 860px) {
  html {
    font-size: 16px; }

  body {
    flex-direction: row; }

  aside {
    flex: 0 1 50%;
    max-width: 515px;
    box-sizing: border-box;
    background: url("../images/bg_o.png") no-repeat right bottom, url("../images/bg.jpg") no-repeat center right;
    -webkit-background-size: auto auto, cover;
    background-size: auto auto, cover; }

  main {
    flex: 1 1 67%; }

  form {
    display: flex;
    flex-wrap: wrap; }
    form .column {
      flex: 1 1 50%;
      box-sizing: border-box;
      padding: 0 5px; }
    form #telephone {
      max-width: 200px; }
    form .fields {
      display: flex;
      flex-direction: row; }
    form .field {
      flex: 1 1 100%; }
      form .field:first-child {
        padding-right: 20px;
        box-sizing: border-box;
        flex: 0 1 180px; }
      form .field label {
        font-size: 0.8rem; }

  footer {
    flex: 1 1 100%; } }

/*# sourceMappingURL=style.css.map */
