/*!
* Estilos para login
* Forged by Edinson Aguilar
* Released under the MIT License.*/
#login * {
    box-sizing: border-box;
    margin: 0;
  }
  
  /* body {
    font-family: sans-serif;
  } */

   
  #login .container {
    display: flex;
    height: 100vh;
    width: 100%;
  }
  
  #login .left {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    -webkit-animation-name: left;
            animation-name: left;
    -webkit-animation-duration: .8s;
            animation-duration: .8s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-delay: .5s;
            animation-delay: .5s;
    margin-top: -50px;
  }
  
  #login #right {
    flex: 1;
    background-color: aliceblue;
    transition: 1s;
    /* background-image: url(https://wallpaperplay.com/walls/full/2/d/8/13598.jpg); 
    background-size: cover; */
    background-repeat: no-repeat;
    background-position: center;
   
    -webkit-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
  }
  #login #right:before{
    content: '';
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
  
    background: rgb(0 0 0 / 0%);
  }
  
  #login .header > h2 {
    margin: 0;
    color: #1f3d9c;
    text-align: center;
  }
  
  #login .header > p {
    margin-top: 10px;
    font-weight: normal;
    font-size: 12px;
    color: #333;
    line-height: 1.5;
    text-align: justify;
  }

  #login .font-weight-light {
    padding: 5px;
    text-shadow: 2px 2px 0 #585858, 2px -2px 0 #59626d, -2px 2px 0 #cdd2d8, -2px -2px 0 #2e5688, 2px 0 0 #2e5688, 0 2px 0 #2e5688, -2px 0 0 #2e5688, 0 -2px 0 #2e5688, 2px -16px 10px rgb(7 0 43 / 26%);
    color: #fff;
    font-size: xx-large;
  }
    
  
  .form {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
  }
  
  .form > p {
    text-align: right;
  }
  
  .form > p > a {
    color: #000;
    font-size: 14px;
  }
  
  .form-field {
    height: 46px;
    padding: 0 16px;
    border: none;
    border-bottom: 2px solid #d2e2ff;
    background: linear-gradient(180deg, white, #f8faff);
    border-radius: 4px;
    font-family: sans-serif;
    outline: 0;
    transition: .2s;
    margin-top: 20px;
  }
  
  .form-field:focus {
    border-color: #0f7ef1;
  }
  
  #login .form > .button {
    padding: 12px 10px;
    border: 0;
    background: #3c6aff;
    border-radius: 3px;
    margin-top: 10px;
    color: #fff;
    letter-spacing: 1px;
    font-family: sans-serif;
    text-decoration: none;
  }
  
  #login .animation {
  -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  
  #login .a1 {
    -webkit-animation-delay: .9s;
            animation-delay: .9s;
  }
  
  .a2 {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  
  .a3 {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  
  .a4 {
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
  }
  
  .a5 {
    -webkit-animation-delay: 1.6s;
            animation-delay: 1.6s;
  }
  
  .a6 {
    -webkit-animation-delay: 1.8s;
            animation-delay: 1.8s;
  }
  
  @-webkit-keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 30%, 0);
      transform: translate3d(0, 30%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 30%, 0);
      transform: translate3d(0, 30%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @-webkit-keyframes left {
    0% {
      opacity: 0;
      width: 0;
    }
    100% {
      opacity: 1;
      padding: 20px 40px;
      width: 500px;
    }
  }
  @keyframes left {
    0% {
      opacity: 0;
      width: 0;
    }
    100% {
      opacity: 1;
      padding: 20px 40px;
      width: 500px;
    }
  }