
/** premium-auth-layout-refined **/

.auth-wrapper {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
}

.auth-left {
  flex: 1;
  background: radial-gradient(circle at 30% 30%, var(--theme-color) 0%, #014d44 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 80px 60px;
  color: #fff;
  z-index: 1;
  position: relative;
}

.auth-left .shape-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.auth-left .shape-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -150px;
  left: -150px;
  filter: blur(80px);
}

.auth-left .shape-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  filter: blur(60px);
}

.auth-left .content-box {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.back-home-wrapper {
  width: 100%;
}
.back-home-link {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  transition: none !important;
}
.back-home-link i {
  margin-right: 8px;
  font-size: 12px;
}
.back-home-link:hover {
  color: #ffffff;
  transform: none;
}

.auth-left .logo-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 15px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 25px;
}

.auth-left .logo-container img {
  max-height: 50px;
  margin-right: 0;
}

.auth-left h1 {
  font-size: 54px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.auth-left h3 {
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
}

.auth-left p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  padding: 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: none !important;
  text-align: left;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-item .icon-box {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 20px;
  flex-shrink: 0;
}

.feature-item .text h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 3px;
  color: #fff;
}

.feature-item .text p {
  font-size: 14px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.auth-social-footer {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}
.auth-social-footer .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.auth-social-footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  transition: none !important;
  backdrop-filter: blur(10px);
}
.auth-social-footer .social-links a:hover {
  background: #fff;
  color: var(--theme-color);
  transform: none;
}

.auth-right {
  flex: 1;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  position: relative;
}

.auth-card-v2 {
  width: 100%;
  max-width: 500px;
  background: #fff;
  padding: 40px 50px;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
}

.auth-card-v2 h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
}

.auth-card-v2 p {
  color: #64748b;
  font-size: 16px;
  font-weight: 500;
}

.auth-form label {
  font-weight: 600;
  font-size: 13px;
  color: #475569;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.auth-form .input-group {
  position: relative;
}

.auth-form .input-group input {
  width: 100%;
  height: 60px;
  background: #f0f4f8;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 20px 0 55px;
  font-size: 16px;
  color: #1e293b;
  transition: none !important;
}

.auth-form .input-group:focus-within input {
  background: #fff;
  border-color: var(--theme-color);
  box-shadow: 0 0 0 4px rgba(2, 121, 107, 0.1);
  outline: none;
}

.auth-form .input-group .input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 18px;
  z-index: 2;
  transition: none !important;
}

.auth-form .input-group:focus-within .input-icon {
  color: var(--theme-color);
}

.auth-form .input-group .input-icon-right {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 20px;
  cursor: pointer;
  transition: none !important;
}

.auth-form .input-group .input-icon-right:hover {
  color: var(--theme-color);
}

.auth-form .forgot-link {
  color: #0284c7;
  font-size: 13px;
  font-weight: 700;
}

.auth-form .forgot-link:hover {
  text-decoration: underline;
}

.custom-checkbox {
  display: flex;
  align-items: center;
}

.custom-checkbox input {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  cursor: pointer;
  accent-color: var(--theme-color);
  border-radius: 4px;
}

.custom-checkbox label {
  margin-bottom: 0;
  font-size: 14px;
  color: #475569;
  cursor: pointer;
}

.auth-form .btn-one {
  background: var(--theme-color);
  height: 60px;
  line-height: 60px;
  padding: 0;
  font-size: 17px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(2, 121, 107, 0.2);
  transition: none !important;
  overflow: hidden;
}

.auth-form .btn-one:hover {
  box-shadow: 0 15px 30px rgba(0, 86, 179, 0.3);
}

.auth-form .theme-btn:before,
.auth-form .theme-btn:after {
  display: none !important;
}

.auth-form .btn-three {
  background: #f1f5f9;
  color: #1e293b !important;
  height: 60px;
  line-height: 60px;
  padding: 0;
  font-size: 17px;
  font-weight: 700;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
}

.auth-form .btn-three:hover {
  background: #e2e8f0;
  color: #0f172a !important;
}

.auth-form .divider {
  text-align: center;
  position: relative;
}

.auth-form .divider:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #cbd5e1;
}

.auth-form .divider span {
  position: relative;
  background: #fff;
  padding: 0 20px;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

/* Multi-Step Registration Styles */
.multi-step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.multi-step-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: #141417;
  margin-bottom: 0;
}
.multi-step-header .step-count {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

.step-progress-wrapper {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}
.step-progress-bar-bg {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  width: 100%;
  position: absolute;
  top: 15px;
  left: 0;
  z-index: 1;
}
.step-progress-bar-fill {
  height: 6px;
  background: var(--theme-color);
  border-radius: 3px;
  width: 25%; /* Step 1 */
  position: absolute;
  top: 15px;
  left: 0;
  z-index: 2;
}

.step-indicators {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
}
.step-item .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 8px;
  border: 4px solid #fff;
}
.step-item.active .icon-circle {
  background: var(--theme-color);
  color: #fff;
}
.step-item span {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}
.step-item.active span {
  color: var(--theme-color);
}

.form-step-header {
  text-align: center;
  margin-bottom: 25px;
}
.form-step-header .icon-box {
  width: 50px;
  height: 50px;
  background: rgba(2, 121, 107, 0.1);
  color: var(--theme-color);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 15px;
}
.form-step-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 5px;
}
.form-step-header p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 0;
}

.auth-form.premium-form .form-group {
  margin-bottom: 15px;
}
.auth-form.premium-form label {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  text-transform: capitalize;
}
.auth-form.premium-form label .req {
  color: #ef4444;
  margin-left: 2px;
}
.auth-form.premium-form .input-group input {
  height: 50px;
  border-radius: 10px;
  font-size: 15px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: none;
}
.auth-form.premium-form .input-group.active-filled input {
  background: rgba(2, 121, 107, 0.05);
  border-color: rgba(2, 121, 107, 0.3);
}
.auth-form.premium-form .input-group .input-icon {
  font-size: 16px;
}

.form-navigation {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
.btn-next {
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 25px;
  height: 45px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  transition: none !important;
  box-shadow: 0 4px 15px rgba(2, 121, 107, 0.2);
}
.btn-next i {
  margin-left: 8px;
}
.btn-next:hover {
  background: #015a4f;
  color: #fff;
  transform: none;
  box-shadow: 0 6px 20px rgba(2, 121, 107, 0.3);
}

.auth-footer-out {
  text-align: center;
  margin-top: 30px;
}
.auth-footer-out p {
  font-size: 14px;
  color: #e2e8f0; /* Update for dark background */
  margin-bottom: 10px;
}
.auth-footer-out a {
  color: #fff; /* Updated for dark background */
  font-weight: 700;
}
.auth-footer-out a:hover {
  text-decoration: underline;
}
.auth-footer-out .copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5); /* Updated for dark background */
}

.mobile-logo {
  display: none;
  text-align: center;
  margin-bottom: 30px;
}
.mobile-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 12px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(2, 121, 107, 0.08);
  border: 1px solid rgba(2, 121, 107, 0.05);
  transition: none !important;
}
.mobile-logo a:hover {
  transform: none;
  box-shadow: 0 15px 35px rgba(2, 121, 107, 0.12);
}
.mobile-logo img {
  max-height: 45px;
}

@media only screen and (max-width: 1199px) {
  .auth-left {
    padding: 60px 40px;
  }
}

@media only screen and (max-width: 991px) {
  .auth-wrapper {
    flex-direction: column;
  }
  
  .auth-left {
    display: none;
  }
  
  .auth-right {
    padding: 80px 20px;
  }
  
  .mobile-logo {
    display: block;
  }
  
  .auth-card-v2 {
    padding: 30px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .auth-left h1 {
    font-size: 38px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .auth-card-v2 {
    padding: 50px 25px;
  }
}
