* {
    box-sizing: border-box;
  }

  body {
    font-family: sans-serif !important;
  }

  .container {
    display: flex;
    height: 100vh;
    width: 100%;
    max-width: 100%;
  }


  @media screen and (max-width: 1000px) {
    .container {
        background-color: #111;
      background-image: url('../imgs/patron.png');
      /* background-size: 100% auto !important; */
      background-repeat: no-repeat;
      background-position: bottom;
      background-position: center bottom;
    }
  }


  @media screen and (min-width: 1001px) {
    .container {
      background: #ddd;
    }
  }

  .logo-derecha{
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    animation-name: logo;
    animation-duration: 1s;
    animation-fill-mode: both;
    max-width: 35%;
    animation-delay: 1s;
    background-image: url(../imgs/logo_blanco.png) !important;
    background-size: 100% auto;
    background-position: 0 100px;
  }

  .logo {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    animation-name: logo;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 1s;
  }

  .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;

    /* background-size: cover; */
    /* background-repeat: no-repeat;
    background-position: bottom; */

  }



  .right {
    flex: 1;
    background-color: #111;
    transition: 1s;
    background-image: url('../imgs/patron.png');
    background-size: 100% auto !important;
    background-repeat: no-repeat;
    background-position: bottom;
    background-position: center bottom;
  }

  .header>h2 {
    margin: 0;
    color: #111;
  }

  .header>h4 {
    margin-top: 10px;
    font-weight: normal;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.4);
  }

  .form {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    color: #000;
  }

  .form>p {
    text-align: right;
  }

  .form>p>a {
    color: gray;
    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: 0.2s;
    margin-top: 20px;
  }

  .form-field:focus {
    border-color: #111;
  }

  .form>button {
    padding: 12px 10px;
    border: 0;
    background: #111;
    border-radius: 3px;
    margin-top: 20px;
    color: #fff;
    letter-spacing: 1px;
    font-family: 'Rubik', sans-serif;
  }

  .animation {
    animation-name: move;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    animation-delay: 2s;
  }

  .a-logo {
    animation-delay: .5s;
  }

  .a0 {
    animation-delay: 1.5s;
  }

  .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 left {
    0% {
      opacity: 0;
      width: 0;
    }

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

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

    100% {
      opacity: 1;
      width: 50%;
    }
  }