.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    padding: 0px;
    margin: 0px;
  }
  
  .main-auth-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 419px;
    gap: 24px;
  }
  
  .auth-writeup {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
  }
  
  .auth-title {
      font-size: 28px;
      font-weight: 500;
      line-height: 100%;
      color: #212529;
  }
  .auth-text-description {
      text-align: center;
      line-height: 23px;
      color: #212529;
  }
  
  .auth-form-container {
      width: 100%;
  }
  
  .password-input {
      border: none !important;
  }
  
  .password-toggle-btn {
      border: none !important;
      background-color: transparent !important;
  }
  
  .password-input-group{
      border:var(--bs-border-width) solid var(--bs-border-color) !important;
      border-radius: var(--bs-border-radius) !important;
  }
  
  .password-input-group:focus-within{
      border: 2px solid #C13B2E80 !important;
      box-shadow: none !important;
  }
  
  input.password-input:focus{
      border: none !important;
      box-shadow:none !important;
  }
  
  
  
  @media (max-width: 768px) {
      .main-auth-content {
          width: 350px;
      }
  }
  
  
  