/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
  }
  
  a {
    color: #14c871;
    text-decoration: none;
  }
  
  a:hover {
    color: #206bfb;
    text-decoration: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
  }
  
  input:focus, button:focus {
    box-shadow: none;
    outline: none;
  }
  /*--------------------------------------------------------------
  # login Section
  --------------------------------------------------------------*/
  #login {
    width: 100%;
    height: 100vh;
    background: #fff;
  }
  #login h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #3e4450;
  }
  #login h2 {
    color: #858ea1;
    margin: 10px 0 30px 0;
    font-size: 24px;
  }
  #login .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #206bfb;
  }
  #login .btn-get-started:hover {
    opacity: 0.8;
  }
  
  #login .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  @media (max-width: 991px) {
    #login {
      height: 100vh;
    }
    #login .animated {
      -webkit-animation: none;
      animation: none;
    }
    #login .login-img {
      text-align: center;
    }
    #login .login-img img {
      width: 50%;
    }
  }
  @media (max-width: 768px) {
    #login {
      height: auto;
    }
    #login h1 {
      font-size: 28px;
      line-height: 36px;
    }
    #login h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
    #login .login-img img {
      width: 70%;
    }
  }
  @media (max-width: 575px) {
    #login .login-img img {
      width: 80%;
    }
  }
  
  @-webkit-keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }