.auth-container {
    width: 450px;
    padding: 16px;
    background-color: white;
    border-radius: 15px;
    margin: 0 auto;
    -webkit-box-shadow: 0px 3px 6px #00000029;
            box-shadow: 0px 3px 6px #00000029;
    margin-top: 20vh;
  }
  
  .auth-container .heading {
    text-align: center;
  }
  
  .auth-container .heading .logo {
    font-weight: bold;
    font-size: 14px;
  }
  
  .auth-container .heading .title {
    font-size: 24px;
    font-weight: 700;
    color: #43362E;
  }
  
  .auth-container .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 310px;
    margin: 0 auto;
  }
  
  .auth-container .content .action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    width: 150px;
    margin: 20px auto;
  }
  
  .auth-container .content .action .btn-login {
    background-color: #F06B48;
    color: #fff;
    height: 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
  }
  
  .auth-container .content .action .btn-register {
    background-color: #42D1A4;
    color: #fff;
    height: 40px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
  }
  
  .text-link {
    color: #3E69C9;
    width: 255px;
    border-bottom: 1px solid #3E69C9;
    text-align: center;
    margin: 20px auto;
    cursor: pointer;
  }
  
  @media only screen and (max-width: 768px) {
    .auth-container {
      max-width: 420px;
      width: 92%;
    }
    .auth-container .content {
      width: 90%;
    }
  }
  /*# sourceMappingURL=auth.css.map */