body {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.login_form {
  width: 320px;
  background: #FFFFFF;
  border: 1px solid #D8CACC;
  overflow: hidden;
  border-radius: 6px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.login_form .inp_wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.login_form .inp_wrapper .wraps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.login_form .inp_wrapper .wraps label {
  font-size: 0.8rem;
  color: #9D9697;
  font-weight: 400;
}
.login_form .inp_wrapper .wraps .inp {
  width: 100%;
  height: 32px;
  border-radius: 6px;
  background-color: #F0EAEB;
  padding: 8px;
  font-size: 0.8rem;
}
.login_form .login_btn {
  width: 160px;
  height: 40px;
  border-radius: 6px;
  background-color: #4F0C16;
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 16px;
}/*# sourceMappingURL=login.css.map */