*,
::after,
::before {
  box-sizing: border-box;
}

body {
  color: #595959;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: #ffffff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.custom-btn {
  font-family: inherit;
  font-weight: 600;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 10px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-btn.pink-btn {
  background-color: #d5199b;
  color: #fff;
}

.custom-btn.pink-btn:hover {
  color: #fff;
  background-color: #b71884;
}

.custom-btn.green-btn {
  background-color: #5dcc79;
  color: #fff;
}

.custom-btn.green-btn:hover {
  color: #fff;
  background-color: #338c26;
}

.custom-btn.grey-outline-btn {
  border-color: #707070;
  color: #707070;
}

.custom-btn.grey-outline-btn:hover {
  color: #fff;
  background-color: #707070;
}

.login-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bolder;
  color: #595959;
}

.login-card {
  width: 30%;
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
  .login-card {
    width: 80%;
  }
}

@media only screen and (min-width: 575px) and (max-width: 991px) {
  .login-card {
    width: 50%;
  }
}

.login-title {
  font-size: 36px;
}

.login-title-wrapper {
  text-align: center;

  .login-logo {
    width: 250px;
  }
}

.login-title-subtitle {
  font-size: 24px;
}

.login-form {
  margin-top: 36px;
}

.login-form div {
  margin-top: 1.5rem;
}

.login-form .form-label {
  margin-bottom: 0.5rem;
  display: inline-block;
}

.login-form .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.alert {
  padding: 1rem;
  max-width: 450px;
  display: flex;
  position: fixed;
  right: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 10px;
  overflow-wrap: anywhere;
}

.alert.alert-success {
  background-color: #5dcc79;
}
.alert.alert-danger {
  background-color: #cc5d5d;
}
