 * { box-sizing: border-box; }
  body {
    font-family: 'Rubik', sans-serif;
    overflow-y:hidden;
  }
  .container {
    display: flex;
    height: 100vh;
  }
  .left {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    animation-name: left;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 1s;
  }
  .right {
    flex: 1;
    background-color: black;
    transition: 1s;
    background-image: url(../../images/pic02.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .header > h2 {
    margin: 0;
    color: #5e0a0a;
  }
  .header > h4 {
    margin-top: 10px;
    font-weight: normal;
    font-size: 15px;
    color: rgba(0,0,0,.4);
  }
  .formm {
    max-width: 80%;
    display: flex;
    flex-direction: column;
  }
  .formm > p {
    text-align: right;
  }
  .formm > p > a {
    color: #000;
    font-size: 14px;
  }
  .form-field {
    height: 46px;
    padding: 0 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: 'Rubik', sans-serif;
    outline: 0;
    transition: .2s;
    margin-top: 20px;
  }
  .form-field:focus {
    border-color: #0f7ef1;
  }

  .formm > button {
    padding: 12px 10px;
    border: 0;
    background: linear-gradient(to right, #5c0f0f 0%,#5c0f0f 100%); 
    border-radius: 3px;
    margin-top: 10px;
    color: #fff;
    letter-spacing: 1px;
    font-family: 'Rubik', sans-serif;
  }
  .animation {
    animation-name: move;
    animation-duration: .4s;
    animation-fill-mode: both;
    animation-delay: 2s;
  }
  .a1 {
    animation-delay: 2s;
  }

  .a2 {
    animation-delay: 2.1s;
  }

  .a3 {
    animation-delay: 2.2s;
  }

  .a4 {
    animation-delay: 2.3s;
  }

  .a5 {
    animation-delay: 2.4s;
  }

  .a6 {
    animation-delay: 2.5s;
  }

  @keyframes move {
    0% {
      opacity: 0;
      visibility: hidden;
      transform: translateY(-40px);
    }

    100% {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
  }

  @keyframes left {
    0% {
      opacity: 0;
      width: 0;
    }

    100% {
      opacity: 1;
      padding: 20px 40px;
      width: 440px;
    }
  }


  a {
    -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    border-bottom: dotted 1px;
    color: #e89980;
    text-decoration: none;
  }

/* Button */

input[type="submit"],
input[type="reset"],
input[type="button"],
.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  background: linear-gradient(to right, #5c0f0f 0%,#5c0f0f 100%);
  border-radius: 6px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  height: 3em;
  line-height: 3em;
  padding: 0 2em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

input[type="button"].fit,
.button.fit {
  width: 100%;
  
}