/*-- Variables --*/
:root {
  --font-default: "Nova Round", system-ui;
  --font-heading: "Nova Round", system-ui;
  --white: #ffffff;
  --color-primary: #6403bf;
  --color-secondary: #d58c2e;
  --color-paragraph: #1b1b1b;
  --btn-bg: #141414;
}

/*=========================*/
/*  Responsive breakpoints
/*=========================*/
.auth_area {
  background: #7515c9;
}
.auth_area .logo_area {
  width: 150px;
  margin: 0 auto 30px;
}
.auth_area .block {
  position: relative;
}
.auth_area .form_area {
  background: -webkit-gradient(linear, left bottom, left top, from(#d58c2e), to(#6403bf));
  background: linear-gradient(0deg, #d58c2e 0%, #6403bf 100%);
  padding: 30px;
  border-radius: 10px;
}
.auth_area .form_area .title {
  font-size: 20px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}
.auth_area .form_area label {
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.auth_area .form_area .form-group {
  margin-bottom: 20px;
}
.auth_area .form_area .form-control {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  padding: 10px 20px;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  /* For modern browsers */
  /* For older Firefox versions */
  /* For older Internet Explorer 10-11 */
  /* For older Edge 12-18 */
}
.auth_area .form_area .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.auth_area .form_area .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5); /* Example: red */
  opacity: 1; /* Ensures full opacity in Firefox */
}
.auth_area .form_area .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5); /* Example: red */
  opacity: 1; /* Ensures full opacity in Firefox */
}
.auth_area .form_area .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5); /* Example: red */
  opacity: 1; /* Ensures full opacity in Firefox */
}
.auth_area .form_area .form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5); /* Example: red */
  opacity: 1; /* Ensures full opacity in Firefox */
}
.auth_area .form_area .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5); /* Example: red */
  opacity: 1; /* Ensures full opacity in Firefox */
}
.auth_area .form_area .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.auth_area .form_area .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.auth_area .form_area .form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.auth_area .form_area select.form-control option {
  color: var(--color-paragraph);
}
.auth_area .form_area .is-invalid {
  border-color: #dc3545;
}
.auth_area .form_area .invalid-feedback {
  color: #ffb864;
}
.auth_area .form_area .forgot_link {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
.auth_area .customBbtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 15px 25px;
  line-height: 1;
  font-size: 18px;
  border-radius: 100px;
  background-color: var(--btn-bg);
  border-color: var(--btn-bg);
  color: var(--white);
  border: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.auth_area .customBbtn:hover {
  background-color: var(--color-primary);
}
.auth_area .customBbtn .image_area img {
  width: 18px;
}
.auth_area .withGradient {
  background: linear-gradient(135deg, #000000 10%, #681f68 31%, #361c36 78%);
  background-size: 200% 200%;
  background-position: left center;
  color: #000;
  font-weight: 700;
  -webkit-transition: background-position 0.8s ease;
  transition: background-position 0.8s ease;
  color: #fff;
}
.auth_area .withGradient:hover {
  background-position: right center;
}
.auth_area .remember_area label {
  margin: 0;
  line-height: 1.5;
}
.auth_area .subtext {
  margin-top: 10px;
}
.auth_area .subtext a {
  font-weight: 700;
  color: var(--white);
  margin-left: 5px;
}
.auth_area .others_action .diverder {
  margin: 15px 0;
  color: #fff;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.auth_area .others_action .diverder span {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.1803921569);
  width: 43%;
}
.auth_area .others_action .diverder span.hold_text {
  width: 15%;
  border: 0;
}
.auth_area .others_action .options a {
  width: 100%;
  border-radius: 100px;
  font-size: 18px;
  background: #fff;
  border-color: #fff;
  color: #000;
}
.auth_area .others_action .options a:hover {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.75);
}
.auth_area .others_action .options a .fa-google {
  color: #DB4437;
}

.white {
  position: absolute;
  width: 100%;
  height: 100%;
}

.squares {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  overflow: hidden;
}

.square {
  -webkit-animation: squares 9.5s linear infinite;
          animation: squares 9.5s linear infinite;
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 1em;
  height: 1em;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  background: #9b36f3;
}
.square:nth-child(2) {
  height: 1.5em;
  width: 3em;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 17s;
          animation-duration: 17s;
  -webkit-filter: blur(5px);
}
.square:nth-child(3) {
  height: 2em;
  width: 1em;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-filter: blur();
}
.square:nth-child(4) {
  height: 1em;
  width: 1.5em;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-filter: blur(3px);
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}
.square:nth-child(5) {
  height: 1.25em;
  width: 2em;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  -webkit-filter: blur(2px);
  -webkit-animation-duration: 11s;
          animation-duration: 11s;
}
.square:nth-child(6) {
  height: 2.5em;
  width: 2em;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-filter: blur(1px);
  -webkit-animation-duration: 9s;
          animation-duration: 9s;
}
.square:nth-child(7) {
  height: 5em;
  width: 2em;
  -webkit-filter: blur(2.5px);
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
}
.square:nth-child(8) {
  height: 1em;
  width: 3em;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  -webkit-filter: blur(6px);
  -webkit-animation-duration: 18s;
          animation-duration: 18s;
}
.square:nth-child(9) {
  height: 1.5em;
  width: 2em;
  -webkit-filter: blur(0.5px);
  -webkit-animation-duration: 9s;
          animation-duration: 9s;
}
.square:nth-child(9) {
  height: 3em;
  width: 2.4em;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  -webkit-filter: blur(0.5px);
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
}

@-webkit-keyframes squares {
  from {
    -webkit-transform: translateY(100%) rotate(-50deg);
            transform: translateY(100%) rotate(-50deg);
  }
  to {
    -webkit-transform: translateY(calc(-100vh - 100%)) rotate(180deg);
            transform: translateY(calc(-100vh - 100%)) rotate(180deg);
  }
}

@keyframes squares {
  from {
    -webkit-transform: translateY(100%) rotate(-50deg);
            transform: translateY(100%) rotate(-50deg);
  }
  to {
    -webkit-transform: translateY(calc(-100vh - 100%)) rotate(180deg);
            transform: translateY(calc(-100vh - 100%)) rotate(180deg);
  }
}
/*# sourceMappingURL=custom-auth.css.map */