@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.auth-wrap {
  min-height: 100vh;
  display: flex;
  padding: 30px 0;
  align-items: center;
  justify-content: center;
  background-color: #b79ad9;
  font-family: "Poppins", sans-serif;
}
.auth-wrap a {
  color: #9068be;
  text-decoration: none;
}
.auth-wrap a:hover {
  text-decoration: underline;
}
.auth-wrap > div {
  margin-bottom: 1.875rem;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
  position: relative;
  border: 0rem solid transparent;
  border-radius: 0.5rem;
  box-shadow: 0rem 0.3125rem 0.3125rem 0rem rgba(82, 63, 105, 0.05);
  height: calc(100% - 30px);
  padding: 1.875rem;
  max-width: 445px;
  width: 100%;
}

.auth-wrap .link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #888888;
}
.auth-wrap p {
  font-size: 0.875rem;
}
.auth-wrap p a {
  color: #888888;
}
.auth-wrap .link a {
  display: inline-block;
  color: #9068be;
}

.auth-wrap-heading {
  text-align: center;
  color: #312a2a;
}
.auth-wrap-heading .brand {
  text-decoration: underline;
}
.auth-wrap-heading .title {
  font-size: 24px;
}
.auth-wrap .form-group label {
  display: block;
  font-size: 0.8375rem;
  color: #312a2a;
  font-weight: 500;
  margin-bottom: 4px;
}
.auth-wrap .form-group input {
  position: relative;
  outline: none;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #312a2a;
  appearance: none;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
  height: 2.85rem;
}
.auth-wrap .form-group {
  margin-bottom: 24px;
}

.auth-wrap button {
  margin-top: 24px;
  width: 100%;
  text-align: center;
  padding: 0.65rem 1.25rem;
  height: 2.85rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  background-color: #9068be;
  border: none;
}

.auth-wrap button:hover {
  box-shadow: inset 0 0 7px #00000075;
}
