#main {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.elementor-widget {
    width: 100%;
}
.elementor-161,
.elementor-element.e-con-boxed,
.elementor-element.e-con,
.e-con-inner,
.elementor-widget-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.featured-box-login {
  background: #fff;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 40px 36px 32px;
  width: 100%;
  max-width: 500px;
  box-shadow:
    0 0 0 1px rgba(230, 81, 0, .15),
    0 24px 60px rgba(0, 0, 0, .7);
  position: relative;
  overflow: hidden;
}
.featured-box-login::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #223543, #181f41, #366a9a);
  background-size: 200% 100%;
  animation: shimmer 2.5s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.featured-box-login h1 {
  font-family: 'Poppins', sans-serif;
  color: #000;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: -.3px;
}
.featured-box-login h1 .fa {
  color: #e65100;
  margin-left: 8px;
}
.form-group.m-b-20 {
  margin-bottom: 18px;
}
.featured-box-login .form-control {
  width: 100%;
  background: #fff;
  border: 1.5px solid #2a2a2a;
  border-radius: 8px;
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 16px;
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
  -webkit-appearance: none;
}
.featured-box-login .form-control::placeholder {
  color: #000;
  font-weight: 400;
}
.featured-box-login .form-control:focus {
  border-color: #2a3a44;
  background: #fff;
  box-shadow: 0 0 0 3px rgb(27 129 255 / 18%);
}
.featured-box-login .form-control:-webkit-autofill,
.featured-box-login .form-control:-webkit-autofill:focus {
  -webkit-text-fill-color: #000;
  transition: background-color 9999s;
}
.form-group.text-center.mb-0 {
  margin-top: 24px;
}
.btn.btn-submit.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #19314a, #006098);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: .3px;
  transition: filter .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgb(77 105 138 / 40%);
}
.btn.btn-submit.btn-login:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.btn.btn-submit.btn-login:active {
  transform: translateY(0) scale(.98);
}
.form-group.text-center.mb-0 > a {
  display: block;
  text-decoration: none;
}
.recaptchaTerms {
  display: block;
  margin-top: 20px;
  text-align: center;
}
.recaptchaTerms p {
  color: #666;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
}
.recaptchaTerms p a {
  color: #252840;
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
  transition: color .2s;
}
.recaptchaTerms p a:hover {
  color: #252840;
  text-decoration: underline;
}
@media (max-width: 480px) {
  .featured-box-login {
    padding: 30px 22px 26px;
    border-radius: 10px;
  }
  .featured-box-login h1 {
    font-size: 19px;
  }
}