.common-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #f6c101;
  color: #000;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
  border: 1px solid #f6c101;
}

.common-btn:hover {
  background-color: transparent;
  border-color: #f6c101;
  color: #f6c101;
}

.common-bd-btn {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: #f6c101;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
  border: 1px solid #f6c101;
}

.common-bd-btn:hover {
  background-color: #f6c101;
  border-color: #f6c101;
  color: #fff;
}

a {
  text-decoration: none;
  color: #f6c101;
  transition: all 0.5s ease-in-out;
}

a:hover {
  color: #f6c101;
}

.form-check-input {
  width: 20px;
  height: 20px;
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: #f6c101;
  border-color: #f6c101;
  box-shadow: none !important;
}

.login-outr {
  background: url("../images/auth-bg.png");
  position: relative;
  min-height: calc(100vh - 0px);
  position: relative;
  background-size: cover;
}

.login-outr::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 55%);
  content: "";
}

.login-box {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  margin: 0 auto;
  box-shadow: 0 0 25px 12px rgba(255, 255, 255, 0.2);
  position: relative;
  max-width: 1200px;
  z-index: 999;
  border-radius: 8px;
}

.login-box .form-section {
  padding: 50px 50px;
  border-left: 1px solid rgb(238 238 238 / 25%);
}

.form-label {
  margin-bottom: .1rem;
}

.auth-logo-inr {
  display: inline-block;
  overflow: hidden;
}

.auth-logo-inr img {
  width: 150px;
  filter: brightness(100);
}

.auth-logo .subtitle {
  font-size: 14px;
  line-height: 26px;
}

.login-box .info {
  position: relative;
  width: 420px;
  margin: 0 auto;
  height: 400px;
  text-align: center;
}

.login-box .info .box {
  position: absolute;
  width: 400px;
  margin: 0 auto;
  height: 400px;
  overflow: hidden;
  padding: 20px;
  border: 15px solid #fff;
}

.login-box .info .box span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
}

.login-box .info .box span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: #f6c101;
  animation: animate 4s linear infinite;
}

@keyframes animate {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
    transform-origin: left;
  }

  50.1% {
    transform: scaleX(1);
    transform-origin: right;
  }

  to {
    transform: scaleX(0);
    transform-origin: right;
  }
}

.login-box .info .box span:nth-child(1) {
  transform: rotate(0);
}

.login-box .info .box span:nth-child(2) {
  transform: rotate(90deg);
}

.login-box .info .box span:nth-child(3) {
  transform: rotate(180deg);
}

.login-box .info .box span:nth-child(4) {
  transform: rotate(270deg);
}

.login-box .info .box .content {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid #f6c101;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
}

.login-box .info .box .content h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 0;
}

.login-box .info .box .content p {
  margin-bottom: 0;
  line-height: 28px;
  font-size: 16px;
  color: #fff;
}

.forgot-password {
  font-size: 14px;
  color: #f6c101;
  font-weight: 400;
  text-transform: capitalize;
  text-decoration: underline !important;
}

.login-outr .toggle-password {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 9;
}

.login-box .form-check .form-check-input {
  margin-top: 3px;
}

label.error {
  font-size: 12px;
  color: #f00;
}

.account-card {
  font-size: 15px;
}

.remeber-card label {
  font-size: 14px;
}

.login-outr .common-form .form-control,
.login-outr .common-form .form-select {
  font-size: 14px;
  color: #262834 !important;
  font-weight: 400;
  height: 50px;
  border-radius: 6px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  border: 1px solid rgba(255, 255, 255);
}

.login-outr .common-form .form-control:focus,
.login-outr .common-form .form-select:focus {
  border-color: #f6c101;
  box-shadow: none;
}

.login-outr .common-form .form-control::placeholder {
  color: #4d4d4d;
}


.custom-radio input[type="radio"] {
  display: none;
}

.custom-radio label {
  padding: 8px 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
}

.custom-radio input[type="radio"]:checked+label {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #000;
}


.custom-radio label:hover {
  border-color: #ffc107;
  color: #ffc107;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
}



@media (max-width: 768px) {
  .login-box .info {
    width: 300px;
  }

  .login-box .info .box {
    width: 300px;
  }

  .login-box .form-section {
    padding: 20px;
    border-left: 0;
  }

  .login-outr {
    padding: 20px 0;
  }
}