@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Poppins:wght@400;500;600&display=swap");
/* MIXINS */
.capitalize_text {
  text-transform: capitalize !important;
  border: 1px solid red;
}

/* HOOKS 
function capitalizeWords(str) {
  return str
    .toLowerCase()
    .split(' ')
    .map(word => word.charAt(0).toUpperCase() + word.slice(1))
    .join(' ');
}

updateElement(
  ".col-lg-7 .card.card-bordered .data-item:nth-of-type(8) .data-value",
  capitalizeWords("")
);

function capitalizeAll(str) {
  return str.toUpperCase();
}

updateElement(
  ".col-lg-7 .card.card-bordered .data-item:nth-of-type(8) .data-value",
  capitalizeAll("")
);

function capitalizeFirstLetter(str) {
  return str.charAt(0).toUpperCase() + str.slice(1).toLowerCase();
}

updateElement(
  ".col-lg-7 .card.card-bordered .data-item:nth-of-type(8) .data-value",
  capitalizeFirstLetter("")
);



*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* Dark Mode */
  /* Light Mode */
}
body.dark-mode .card {
  color: #8094ae;
}
body.dark-mode .badge {
  color: #8094ae;
}
body.badge {
  background-color: transparent;
  color: #000;
}

.form-h1 {
  color: #ffc629;
}

.form-body {
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #fff;
  background: #101924;
}

/* WRAPPER */
.wrapper {
  width: 420px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(9px);
          backdrop-filter: blur(9px);
  color: #fff;
  border-radius: 12px;
  padding: 40px 20px;
  margin: 20px auto;
}
.wrapper h1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
}
.wrapper .input-box {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 30px 0;
}
.wrapper .remember-forgot {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  margin: -15px 0 15px;
}
.wrapper .btn {
  width: 100%;
  height: 50px;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 16px;
  color: #333;
  font-weight: 600;
  margin-top: 20px;
}
.wrapper .register-link {
  font-size: 14.5px;
  text-align: center;
  margin: 20px 0 15px;
}
.wrapper .register-link p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.wrapper .register-link p a:hover {
  text-decoration: underline;
}

/* INPUT BOX */
.input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  font-size: 16px;
  color: #fff;
  padding: 20px 45px 20px 20px;
}
.input-box input::-moz-placeholder {
  color: #fff;
}
.input-box input::placeholder {
  color: #fff;
}
.input-box i {
  position: absolute;
  right: 20px;
  top: 30%;
  transform: translate(-50%);
  font-size: 20px;
}

.remember-forgot label input {
  accent-color: #fff;
  margin-right: 3px;
}
.remember-forgot a {
  color: #fff;
  text-decoration: none;
}
.remember-forgot a:hover {
  text-decoration: underline;
}

/* Forgot Password */
.text-center {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.go-back {
  color: #fff;
  text-decoration: underline;
  margin-left: 10px;
  position: relative;
  bottom: 1rem;
}

.verify-success {
  color: #27ae60 !important;
}
.verify-success::before {
  background: #27ae60;
}

.verify-failed {
  color: #851911 !important;
}
.verify-failed::before {
  background: #851911;
}

.text-capitalize {
  text-transform: capitalize;
}

.add-btn {
  min-width: 160px;
}

.no-payments-message {
  margin: 1rem auto;
  width: -moz-fit-content;
  width: fit-content;
}/*# sourceMappingURL=custom.css.map */