
/* BASIC */

  html {
    background-color: #0d054d;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    height: 100vh;
  }
  
  a {
    color: #92badd;
    display:inline-block;
    text-decoration: none;
    font-weight: 400;
  }
  
  h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display:inline-block;
    margin: 40px 8px 10px 8px; 
    color: #cccccc;
  }
     
  .sf-toolbar {
    display: none !important;
  }
  
  /* STRUCTURE */
  
  .wrapper {
    display: flex;
    align-items: center;
    flex-direction: column; 
    justify-content: center;
    min-height: 100%;
    padding: 20px;
    background-size: cover;
    overflow: hidden;
  }
  
  
  /* TABS */
  
  h2.inactive {
    color: #cccccc;
  }
  
  h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
  }
  
  input[type=text], input[type=password]  {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    text-align: center;
    display: inline-block;
    border: none;
    color: #ffffff !important;
    border-radius: 0;
    padding-left: 0;
    border-bottom: 1px solid #ffffff;
    width: 240px;
    background: transparent;
    font-family: 'Nunito', sans-serif !important;
  }
  
  /* input[type=text]:focus, input[type=password]:focus {
    background-color: #fff;
  } */
  
  input[type=text]::placeholder, input[type=password]::placeholder {
    color: #fff;
  }
  
  
  
  /* ANIMATIONS */
  
  /* Simple CSS3 Fade-in-down Animation */
  .fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  
  @-webkit-keyframes fadeInDown {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  /* Simple CSS3 Fade-in Animation */
  @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  
  .fadeIn {
    opacity:0;
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;
  
    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
  
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
  }
  
  .fadeIn.first {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
  
  .fadeIn.second {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
  
  .fadeIn.third {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    animation-delay: 0.8s;
  }
  
  .fadeIn.fourth {
    background-color: #939393;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
  }
  .fadeIn.fourth:hover {
    background-color: #939393 !important;
  }
  
  /* Simple CSS3 Fade-in Animation */
  .underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #06e3c0;
    content: "";
    transition: width 0.2s;
  }
  
  .underlineHover:hover {
    color: #0d0d0d;
  }
  
  .underlineHover:hover:after{
    width: 100%;
  }
  
  /* OTHERS */
  
  *:focus {
      outline: none;
  } 
  
  .adest-logo {
    width: 300px;
    margin-bottom: 50px;
  }

  .login-row{
    background: url(../media/adest/bg-login.png);
    background-size: cover;
    background-color:#0d054d ;
  }
  
  .img-login {
    width: 50%;
    height: 100vh;
  }

  .img-login {
    width: 50%;
    height: 100%;
    text-align: right;
  }

  .img-login img {
    height: 100vh;
    max-width: 100%;
  }

  

  .submit-login-btn {
    background-color: #0d054d;
    border: 1px solid #0d054d;
    border-radius: 6px;
    color: #fff;
    margin-top: 46px;
    margin-bottom: 15px;
    text-transform: uppercase;
    padding: 7px 15px !important;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Nunito', sans-serif !important;
    width: 240px;
    -webkit-transition: box-shadow 500ms;
    -moz-transition: box-shadow 500ms;
    -ms-transition: box-shadow 500ms;
    -o-transition: box-shadow 500ms;
    transition: box-shadow 500ms;
    box-shadow: none;
  }

    .submit-login-btn:hover{
      box-shadow: 0px 0px 15px 5px #5e17fe;
    }

  .img-login-phone {
    display: none;
    width: 100%;
  }

  .copyright {
    position: absolute;
    bottom: 10px;
    color: #fff;
    text-align: center;
    font-size: 13px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .form-content form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .login-error {
    text-align: center;
    margin-top: 10px;
    margin-bottom: -20px;
    color: #d0312d;
  }

  @media only screen and (max-width: 650px){
    .wrapper {
      height: 50vh;
      width: 100%;
      align-items: center;
      background: none;
    }
    .img-login {
      display: none;
      width: 100%;
      height: initial;
    }

    .img-login-phone {
      /* display: initial;
      height: 50vh; */
      display: none;
    }

    .img-login-phone img {
      height: 100%;
      width: 100%;
      object-fit: cover;
    }

    .img-login img{
      height: 50vh;
    }

    .login-row {
      flex-direction: column;
      /* padding-top: 80px; */
    }
  }