.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 148px;
    height: 100vh;
    gap: 73px;
    
    @media (max-width: 768px) {
      padding: 1rem 1.5rem;
    }
    @media (max-width: 992px) {
      padding: 2rem 1.5rem;
    }

    @media (min-width: 1400px) {
      padding: 0 112px;
    }
    
    @media (min-width: 1000px) {
      padding: 20px 100px;
      form {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
      }
    }
  
    & > * {
      font-family: 'Figtree';
    }
    
    @media (max-width: 1440px) {
      .right-content {  
        img {
          width: 500px;
        }      
      }
    }
    @media (max-width: 1200px) {
      .right-content {  
        img {
          width: 400px;
        }      
      }
    }
    @media (max-width: 992px) {      
      .right-content {  
        display: none;
      }
      form {
        height: 100%;
      }
    }

    .email-verify {
      h1 {
        font-size: 3rem;
        text-align: start;
        align-self: baseline;
      }
      p {
        color: #7F7F7F;
        font-size: 1.2rem;
        text-align: start;
      }
      a {
        align-self: baseline;
        display: inline-block;
        border: none;
        padding: 10px 18px;
        background-color: #000;
        color: #FFF;
        font-size: 1.2rem;
        border-radius: 6px;
        transition: 0.3s ease;
        transition-property: background-color, color;

        &:hover {
          background-color: #7F7F7F;
        }

        &.logout {
          margin-left: 2rem;
          background-color: transparent;
          color: #000;
          box-sizing: border-box;
          outline: 2px solid #000;
        }

        &.logout:hover {
          color: #FFF;
          background-color: #000;
        }
      }
    }
  
    .left-content {
      display: flex;
      flex-direction: column;
      gap: 37px;
      align-items: center;
      text-align: center;
      max-width: 600px;
  
      .content-subheading {
        color: #7F7F7F;
      }
  
      .login-input {
        width: 100%;
        flex-direction: column;
        gap: 15px;
        align-items: end;
        
        .input-group {
          width: 100%;
          display: flex;
          border: 2px solid #7F7F7F;
          border-radius:100px;
          padding: 15px 30px;
          gap: 10px;
          input {
            width: 100%;
            width: 100%;
            border: none;
            outline: none;
            font-family: 'Figtree';
            font-size: 18px;
            font-weight: 500;
            color: #000 !important;
          }
          img {
            cursor: pointer;
            &:hover {
              filter: brightness(0);
            }
          }
        }
  
        p {
          color: #000;
          font-weight: 600;
          cursor: pointer;
          width: fit-content;
  
          &:hover {
            color: #7f7f7f;
        }
      }
    }
    .btn-login {
      background-color: #000;
      outline: none;
      width: 100%;
      border: none;
      border-radius: 200px;
      color: white;
      padding: 16px 0;
      font-weight: 700;
      font-size: 18px;
      cursor: pointer;
      transition: background-color 0.3s ease;
  
      &:hover {
        background-color: #7F7F7F;
      }
    }
  
    .continue-text-bar {
      display: flex;
      align-items: center;
      width: 100%;
      gap: 10px;
  
      p {
        min-width: max-content;
        width: 30%;
      }
  
      div {
        height: 3px;
        width: 50%;
        background-color: #D9D9D9;
      }
    }
  
    .btn-google {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
      background-color: transparent;
      outline: none;
      width: 100%;
      border: 1px solid #7F7F7F;
      border-radius: 200px;
      color: white;
      padding: 16px 0;
      font-weight: 700;
      font-size: 18px;
      cursor: pointer;
      transition: background-color 0.3s ease;
  
      &:hover {
        background-color: #D9D9D9;
        color: white;
      }
    }
  
    .register-text {
      a {
        color: #000;
        cursor: pointer;
        font-weight: 600;
  
        &:hover {
          color: #7F7F7F;
        } 
      }
    }
  }
  
  p {
    font-family: 'Figtree';
    font-weight: 500;
    color: #000;
  }
}  