@import url("https://fonts.googleapis.com/css2?family=Abel&family=Great+Vibes&family=Onest:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oxygen:wght@300;400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  color: #333;
  overflow: hidden;
  height: 100vh;
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
}

.background-gradient {
  display: flex;
  justify-content: center;
  width: 100%;
}
header.main-header {
  width: 100%;
}

header.main-header img {
  width: 100%;
}
.content-wrapper {
  width: 100%;
  max-width: 440px;
  padding: 20px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main.login-container {
  width: 100%;
  box-shadow: 0px 0px 10px 0px
    rgba(237.99999999999997, 237.99999999999997, 237.99999999999997, 0.51);
}
.logo-text {
  color: #fff;
  font-size: 160px;
  font-family: "Roboto Condensed", Times, serif;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1;
}

.login-card {
  background: #f4f4f4;
  width: 100%;
  padding: 30px 25px;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.card-header h2 {
  font-size: 29px;
  font-weight: 500;
  color: #444;
  text-transform: none;
}

.card-header .line {
  flex-grow: 1;
  height: 1px;
  background: #ccc;
}

.form-group {
  margin-bottom: 15px !important;
  position: relative;
}

.btn-signin {
  width: 100%;
  background: #0088cc;
  color: white;
  border: none;
  padding: 10px 12px;
  font-size: 1.05rem;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
  font-weight: 400;
}

.btn-signin:hover {
  background: #0077b3;
}

.btn-signin i {
  font-size: 0.9rem;
}

.security-text {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 25px;
  text-align: left;
  color: #333;
}

.main-footer {
  color: #fff;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 10px;
}

.main-footer a {
  color: #fff;
  text-decoration: none;
}

.main-footer a:hover {
  text-decoration: underline;
}

/* Transitions */
.login-card {
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.featured-box-login {
  box-sizing: border-box;
  padding: 0px 12px;
  border-radius: 4px;
  background: #ffffff00;
  margin-top: 70px;
  flex: 0 0 54%;
}

.featured-box-login h4 {
  color: #8a4e0e;
  margin-bottom: 15px;
  font-size: 24px;
  font-family: "Roboto Condensed";
  font-weight: 400;
}
.login .form-group {
  position: relative;
}
.m-b-20 {
  margin-bottom: 20px !important;
}
.custom-control.custom-checkbox {
  margin-bottom: 4px;
}
.form-control {
  background: #ffffff;
  box-shadow: none !important;
  border-bottom: none;
  color: #111;
  font-size: 14px;
  border-radius: 4px;
  font-style: normal;
  height: 40px;
  display: block;
  width: 100%;
  padding: 7.2px 14.4px;
  font-weight: 400;
  line-height: 1.5;
  outline: none;
  font-family: Helvetica;
  font-style: italic;
  border-width: 0px;
  box-sizing: border-box;
}
.login .form-group i {
  position: absolute;
  right: 10px;
  top: 8px;
}
.text-center {
  text-align: center !important;
}
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}
.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  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;
}
.forgotpass {
  color: #fff;
  text-transform: capitalize;
  margin-top: 5%;
  font-size: 15px;
  background: #ff8c00;
  padding: 8px 18px;
  border-radius: 8px;
  display: block;
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
}
.forgotpass i {
  color: #fff;
  margin: 0 10px;
}
.forgotpass small {
  font-size: 15px;
  border-bottom: 1px solid;
}
a {
  color: #ffffff;
  text-decoration: none;
  background-color: transparent;
}
.align-center {
  text-align: center;
}
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}
.social_connect {
  display: block;
  text-align: center;
  justify-content: center;
  border-top: 1px dashed #00c6f3;
  margin-top: 10px;
  padding-top: 5px;
  position: relative;
}
.slide-right {
  animation: slide-right 2s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite
    alternate both;
}
.handicon {
  width: 30px !important;
  position: absolute;
  left: 0px;
}
.new-inner {
  margin: 0;
  padding: 40px;
}
.new-wrapper {
  margin: 10% auto;
  /* padding: 40px; */
  background: linear-gradient(180deg, #00000005 27%, #1c282de0 83%);
  max-width: 700px;
  scale: 0.902;
}
.inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0px 10px;
}
h2.text-center {
  margin-bottom: 24px;
}
.inner .new-wrap {
  flex: 0 0 41%;
  padding: 0px 12px;
  margin-top: 80px;
}
.btn-submit {
  background-color: #e83523;
  border-color: #e83523;
  color: #fff;
  font-weight: 600;
}
.text-right {
  text-align: right;
}
.social_connect a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 3%;
  color: #ffffff;
  font-family: Helvetica;
  font-size: 12px;
}

.form-group i {
  position: absolute;
  right: 10px;
  top: 8px;
}
.new_logo {
  margin: 0 auto;
  text-align: center;
}
.new-wrapper .new_logo img {
  width: 150px;
  height: auto;
  margin: 0 auto !important;
}
.new_logo2 img {
  width: 150px;
}
.fp-link {
  color: #fff !important;
  text-transform: capitalize;
  margin-bottom: 3%;
  font-size: 15px;
  background: #000 !important;
  padding: 8px 18px;
  border-radius: 4px;
  display: block;
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
}
.fp-link small {
  font-size: 15px;
  border-bottom: 1px solid;
  color: #fff;
}
.fp-link svg {
  color: #fff;
  margin: 0 10px;
}
.new_logo2 {
  text-align: center;
  margin-top: 20px;
}
small.recaptchaTerms {
  font-size: 10px;
}
@keyframes slide-right {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(20px);
  }
}
@media (max-width: 767px) {
  .new-wrapper {
    width: 100%;
    max-width: unset;
    background-image: unset;
    scale: unset;
  }
  .btn-submit {
    border-color: #000;
    color: #fff;
    font-weight: 600;
    margin: 0;
    width: 100%;
    background: #000 !important;
    color: #00c6f3;
    text-transform: capitalize;
    padding: 7px;
    cursor: pointer;
  }
  .new-wrapper .new_logo img {
    width: auto;
    height: 60px;
  }
  .new_logo {
    margin-top: -8px;
  }

  .new_logo2 {
    margin-bottom: 12px;
  }
  .background-gradient {
    height: 100%;
    background: linear-gradient(180deg, #00000005 27%, #1c282de0 83%);
  }
  .form-group {
    margin-bottom: 7px !important;
  }
  .new-inner {
    padding: 0px;
    scale: 0.9;
  }
  .inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 0px 5px;
  }
  h2.text-center {
    display: none;
  }
  .featured-box-login {
    flex: 0 0 100%;
  }
  .inner .new-wrap {
    flex: 0 0 100%;
    padding: 0px;
    margin-top: 36px;
  }
  .new_logo3 {
    display: none;
  }
  .featured-box-login {
    margin-top: 60px;
    padding: 0px;
  }
}

p.recaptchaTerms {
  color: #fff;
  margin-bottom: 7px;
  font-size: 12px;
  line-height: 1.6;
}

p.recaptchaTerms a {
  color: #fff;
  text-decoration: underline;
}
label.custom-control-label {
  color: #fff;
  font-size: 12px;
  font-family: Helvetica;
}
.new_logo3 {
  text-align: center;
  margin-top: 20px;
}
.new_logo3 img {
  width: 150px;
}
