/* Global auth style */
/* body {
  background-image: url("/assets/image/bg-auth.png");
  background-position: center;
  background-size: cover;
} */

.login-page-wrapper {
  /* background-color: white; */
  background-image: url("/assets/image/bg-auth.png");
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login-form-wrapper {
  width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-form-wrapper h1 {
  margin-top: 22px;
  margin-bottom: 48px;
  font-weight: 700;
}

.input-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.input-email {
  border: 2px solid #c6e7e4 !important;
  padding: 15px 40px !important;
}

.input-password {
  padding: 15px 40px !important;
  border: 2px solid #c6e7e4 !important;
  border-right-width: 0 !important;
  border-top-left-radius: 500px !important;
  border-bottom-left-radius: 500px !important;
}

.input-group-text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background-color: white !important;
  border: 2px solid #c6e7e4 !important;
  border-left-width: 0 !important;
  border-top-right-radius: 500px !important;
  border-bottom-right-radius: 500px !important;
}

.error-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 20px;
}

.login-form-wrapper .btn {
  width: 100%;
  padding: 15px 0;
  font-weight: 600;
}

.signup-wrapper {
  display: flex;
  margin-top: 20px;
  column-gap: 5px;
}

/* register style */
.input-custom-register {
  border: 2px solid #c6e7e4 !important;
  padding: 15px 40px !important;
}

.terms-wrapper {
  display: flex;
  margin-top: 20px;
  width: 100%;
  column-gap: 5px;
}

.btn-register {
  margin-top: 41px;
}

/* Responsive */
@media (max-width: 576px) {
  body {
    background-image: url("/assets/image/bg-header-mobile.png");
    background-position: center;
    background-size: cover;
  }

  .login-page-wrapper {
    background-image: none;
    align-items: start;
    padding-top: 60px;
  }

  .error-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .btn-register {
    margin-top: 10px;
  }
}
