:root {
  --primary-color: #eeff41;
  --bs-body-color: #fff;
  --bs-body-bg: #04000c;
  --bs-body-font-family: "Outfit", sans-serif;
  --bs-font-sans-serif: "Outfit", sans-serif;
  --bs-link-hover-color: #fff;
  --bs-primary-rgb: 238, 255, 65;
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px #241e3f inset;
  transition: background-color 5000s ease-in-out;
}

.btnStyle2 {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  border-radius: 28px;
  background: linear-gradient(94deg, #5200ff 8.57%, #ab41ff 92%);
  padding: 16px 50px;
  transition: filter 0.3s;
  &:hover {
    filter: hue-rotate(18deg);
  }
}

.btnStyle2 {
  border: 0;
  color: #fff;
  padding: 14px 50px;
  --bs-btn-line-height: 1;
}

body {
  width: 100vw;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #110b40, #090620, #090620);
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/pattern.png);
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.12;
}

.form-control {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border-radius: 0.4rem;
  border-color: rgba(82, 85, 116, 0.411) !important;
  background-color: #241e3f;
  padding: 0.5rem 0.75rem;
}

.form-control:focus {
  color: #fff;
  background-color: #241e3f;
}

.form-label {
  font-weight: 200;
  font-size: 14px;
  margin-bottom: 0.34rem;
}

.gradient-form {
  padding: 20px;
}

.card {
  max-width: 600px;
  background: radial-gradient(
    8109.71% 109.14% at 76.39% 150.52%,
    #241e3f 0%,
    #151227 62.98%,
    #241e3f 100%
  );
}

.card-body {
  padding: 30px 35px;
}

.required,
.error {
  color: #ff2e35;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error,
.error {
  color: #ff2e35;
}

.parsley-errors-list {
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  opacity: 0;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}

.parsley-errors-list li {
  color: #ff2e35;
  font-size: 12px;
  margin-top: 3px;
}

.required {
  font-size: 14px;
  padding-left: 2px;
}

.error {
  font-size: 0.9em;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  color: #ff2e35;
  font-size: 12px;
  position: absolute;
}

.alert.alert_message {
  font-size: 12px !important;
}

hr {
  opacity: 0.2;
}

@media screen and (max-width: 575px) {
  .card {
    background: transparent;
    margin-bottom: 20px;
  }
  .card-body {
    padding: 0;
  }
}
