/* ============================================================
   CREATEACCOUNT.CSS — Premium Split-Screen Auth (Bidszo)
   Extends the shared auth-wrapper pattern from login.css
============================================================ */

/* Auth wrapper — split screen */
.auth-wrapper {
  /* min-height: 100vh; */
  max-height: 100vh;
  display: flex;
}

/* === LEFT PANEL === */
.auth-left {
  width: 42%;
  background: var(--dark-grad, linear-gradient(180deg, #171717 0%, #0A0A0A 100%));
  /* padding: 3rem; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Gold glow decorations */
.auth-left::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(80px);
  opacity: .12;
  top: -100px;
  left: -80px;
}

.auth-left::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--gold-light);
  border-radius: 50%;
  filter: blur(60px);
  opacity: .1;
  bottom: -60px;
  right: -40px;
}

.auth-brand {
  z-index: 1;
}

.auth-tagline {
  z-index: 1;
  color: rgba(255, 255, 255, .7);
  font-size: .88rem;
  line-height: 1.7;
}

.auth-preview-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, .1);
  z-index: 1;
}

/*=====================================
        BRAND LOGO
======================================*/

.login-brand {

  display: flex;
  align-items: center;

  gap: 14px;

  text-decoration: none;

  margin-bottom: 18px;

}

.login-brand-logo {

  width: 60px;
  height: 60px;

  object-fit: contain;

  flex-shrink: 0;

  transition: .35s ease;

}

.login-brand:hover .login-brand-logo {

  transform: scale(1.05);

}

.login-brand-content {

  display: flex;
  flex-direction: column;

}

.login-brand-title {

  font-family: 'Plus Jakarta Sans', sans-serif;

  font-size: 34px;

  font-weight: 800;

  color: var(--gold);

  line-height: 1;

}

.login-brand-subtitle {

  margin-top: 5px;

  font-size: 11px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: rgba(255, 255, 255, .75);

}

.auth-tagline {

  margin-top: 16px;

  color: rgba(255, 255, 255, .75);

  font-size: 16px;

  line-height: 1.7;

  max-width: 420px;

}

/* Feature list on left panel */
.auth-features {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  z-index: 1;
}

.auth-feature-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255, 255, 255, .8);
  font-size: .85rem;
  font-family: 'Poppins', sans-serif;
}

.auth-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(212, 160, 23, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}

/* Stats row */
.auth-stats {
  display: flex;
  gap: 1.5rem;
  z-index: 1;
}

.auth-stat {
  text-align: center;
}

.auth-stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.auth-stat span {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
}

/* === RIGHT PANEL === */
.auth-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: var(--white);
}

/* Scrollable right panel for long forms */
.auth-right--scroll {
  align-items: flex-start;
  overflow-y: auto;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.auth-right--scroll .auth-form-box {
  margin: auto 0;
}

.auth-form-box {
  width: 100%;
  max-width: 440px;
}

.auth-form-box h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--dark);
  margin-bottom: .4rem;
}

.auth-form-box .auth-subtitle {
  color: var(--grey);
  font-size: .9rem;
  margin-bottom: 1.6rem;
}

/* === PREMIUM FORM INPUTS === */
.form-group {
  position: relative;
  margin-bottom: 1.1rem;
}

.form-group .form-control {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: .82rem 1rem .82rem 3rem;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  background: var(--bg-light);
  transition: all .3s var(--ease, cubic-bezier(.22, 1, .36, 1));
}

.form-group .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, .12);
  background: var(--white);
  outline: none;
}

.form-group .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey);
  font-size: 1rem;
  transition: color .3s;
  pointer-events: none;
}

.form-group:focus-within .input-icon {
  color: var(--gold-2);
}

.form-group .toggle-pwd {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey);
  cursor: pointer;
  font-size: 1rem;
  background: none;
  border: none;
  transition: color .3s;
}

.form-group .toggle-pwd:hover {
  color: var(--gold);
}

/* Terms checkbox */
.form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

/* Auth link */
.auth-link {
  color: var(--gold-2);
  font-weight: 600;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}

.btn-gold{
  border: white;
}

.auth-card__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.auth-back-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: opacity .2s;
}


/* === RESPONSIVE === */
@media (max-width: 991px) {
  .auth-left {
    width: 38%;
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 767px) {
  .auth-left {
    display: none;
  }

  .auth-right,
  .auth-right--scroll {
    padding: 2.5rem 1.25rem;
    align-items: flex-start;
    padding-top: 2.5rem;
  }

  .auth-form-box {
    max-width: 100%;
  }
}

@media (max-width:991px){

.login-brand-logo{

    width:52px;
    height:52px;

}

.login-brand-title{

    font-size:30px;

}

.login-brand-subtitle{

    font-size:10px;

    letter-spacing:1.5px;

}

}

@media (max-width:767px){

.login-brand{

    justify-content:center;

    gap:12px;

}

.login-brand-logo{

    width:46px;
    height:46px;

}

.login-brand-title{

    font-size:26px;

}

.login-brand-subtitle{

    font-size:9px;

    letter-spacing:1px;

}

.auth-tagline{

    text-align:center;

    font-size:15px;

}

}

@media (max-width:480px){

.login-brand-logo{

    width:40px;
    height:40px;

}

.login-brand-title{

    font-size:22px;

}

.login-brand-subtitle{

    font-size:8px;

}

.auth-tagline{

    font-size:14px;

}

}