/* Typography */
body {
    line-height: 1;
  }
  
  h1 {
    font-size: 40px;
  }
  
  h4 {
    color: #867992;
    text-align: left;
    margin-bottom: 30px;
    letter-spacing: 0.2px;
    line-height: 20px;
  }
  
  /* Animations */
  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  /* Layout Components */
  .order__left {
    padding: 30px;
    border: 5px dotted #fff;
  }
  
  .order__left img {
    width: 200px;
  }
  
  .order__right {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .no__overflow {
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  /* Form Styles */
  .form {
    max-width: 300px;
  }
  
  .login-item .input {
    width: 100%;
    height: 44px;
    padding: 12px 16px;
    margin: 16px 0;
    display: block;
    border: 1px solid #a0a7ce;
    background-color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    color: #a0a7ce;
    outline: none;
    transition: box-shadow 0.25s ease-in-out, background-image 0.25s;
  }
  
  .login-item .icon {
    position: absolute;
    top: 16px;
    left: 18px;
    pointer-events: none;
    z-index: 2;
  }
  
  input[type="text"],
  input[type="password"] {
    width: 300px;
    padding: 8px 16px;
    margin: 16px 0;
    display: block;
    background: #fff;
    border: 1px solid #210a0e;
    border-left: 5px solid #210a0e;
    border-radius: 0;
    box-sizing: border-box;
    font-size: 14px;
    outline: none;
    transition: box-shadow 0.25s ease-in-out, background-image 0.25s;
  }
  
  /* Placeholders */
  ::-webkit-input-placeholder {
    color: #a29ca8;
  }
  
  :-ms-input-placeholder {
    color: #a29ca8;
  }
  
  ::placeholder {
    color: #a29ca8;
  }
  
  /* Utility Classes */
  .justify__space_between {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 26px 0;
  }
  
  /* Checkbox & Labels */
  input[type="checkbox"],
  label {
    margin-right: 4px;
    cursor: pointer;
    outline-color: #b595d4;
  }
  
  /* Text Styles */
  .remember_me,
  .signup {
    color: #867992;
  }
  
  .signup {
    font-size: 14px;
    text-align: center;
  }
  
  .forgot__password {
    color: #210a0e;
    text-align: left;
    outline-color: #210a0e;
  }
  
  .forgot__password:active {
    color: #867992;
  }
  
  /* Buttons */
  .login__button {
    outline-color: #210a0e;
    width: 100%;
    border: none;
    background-color: #210a0e;
    padding: 13px 17px;
    color: #fff;
    border-radius: 0.25rem;
    font-size: 16px;
    cursor: pointer;
    transition: box-shadow 0.25s ease-in-out, background-color 0.3s;
  }
  
  .login__button:hover {
    box-shadow: 0 0 0 0.25rem rgba(33, 10, 14, 0.3);
  }
  
  .login__button:active {
    background-color: #f89f1d;
    box-shadow: none;
  }
  
  .vertical > .btn,
  .btn-group > .btn {
    font-size: 14px;
  }
  
  /* Images */
  .logo {
    margin-bottom: 12px;
    width: 100%;
  }
  
  .img {
    height: 100%;
    object-fit: cover;
    max-width: auto;
  }
  
  /* Responsive Styles */
  @media only screen and (max-width: 800px) {
    .grid {
      grid-template-columns: auto;
    }
  
    .order__left {
      display: none;
    }
  
    .order__right {
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .centered {
      align-items: flex-start;
    }
  
    .no__overflow {
      align-items: flex-start;
    }
  
    h4 {
      text-align: center;
    }
  
    .img {
      width: 100vw;
    }
  }
  
  @media only screen and (max-height: 600px) {
    .img {
      width: 120%;
    }
    
    input[type="text"],
    input[type="password"] {
      width: 250px;
    }
  }