.auth-page{
  background:
    radial-gradient(circle at top left, rgba(25,135,84,.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(25,135,84,.08), transparent 28%),
    linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.auth-hero{
  padding: 3.5rem 0 2.25rem;
  text-align: center;
}

.auth-badge{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: #e9f7ef;
  color: #157347;
  border: 1px solid #cfe9da;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 8px 24px rgba(25,135,84,.08);
  margin-bottom: 1rem;
}

.auth-hero h1{
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #1f2937;
  margin-bottom: .65rem;
  letter-spacing: -.02em;
}

.auth-hero p{
  max-width: 720px;
  margin: 0 auto;
  color: #6b7280;
  font-size: 1.04rem;
  line-height: 1.75;
}

.auth-section{
  padding: 0 0 4.5rem;
}

.auth-card{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
  overflow: hidden;
}

.auth-card-body{
  padding: 2rem;
}

.auth-card-head{
  margin-bottom: 1.5rem;
}

.auth-card-title{
  margin: 0 0 .45rem;
  font-size: 1.45rem;
  font-weight: 800;
  color: #111827;
}

.auth-card-subtitle{
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
  font-size: .98rem;
}

.auth-form .form-label{
  font-weight: 700;
  color: #374151;
  margin-bottom: .45rem;
}

.auth-form .form-control{
  min-height: 52px;
  border-radius: .9rem;
  border: 1px solid #d1d5db;
  padding: .85rem 1rem;
  font-size: .98rem;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.auth-form .form-control:focus{
  border-color: rgba(25,135,84,.55);
  box-shadow: 0 0 0 .25rem rgba(25,135,84,.12);
}

.auth-form .is-invalid{
  border-color: #dc3545;
}

.auth-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: .35rem 0 1.35rem;
  flex-wrap: wrap;
}

.auth-link{
  color: #198754;
  text-decoration: none;
  font-weight: 600;
}

.auth-link:hover{
  color: #146c43;
  text-decoration: underline;
}

.auth-submit{
  min-height: 52px;
  border-radius: .9rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(25,135,84,.18);
}

.auth-note{
  margin-top: 1.25rem;
  padding: .95rem 1rem;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: .94rem;
  line-height: 1.65;
}

.auth-note strong{
  color: #374151;
}

.auth-side{
  height: 100%;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(25,135,84,.98), rgba(21,115,71,.94));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-side-icon{
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(255,255,255,.14);
  font-size: 1.45rem;
  margin-bottom: 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.auth-side h2{
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: .85rem;
}

.auth-side p{
  color: rgba(255,255,255,.92);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.auth-side-list{
  list-style: none;
  padding: 0;
  margin: .25rem 0 0;
  display: grid;
  gap: .7rem;
}

.auth-side-list li{
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  color: rgba(255,255,255,.96);
  line-height: 1.55;
}

.auth-side-list i{
  margin-top: .15rem;
  color: #d1fae5;
}

@media (max-width: 991.98px){
  .auth-side{
    border-top: 1px solid rgba(255,255,255,.16);
    border-radius: 0 0 1.5rem 1.5rem;
  }
}

@media (max-width: 575.98px){
  .auth-hero{
    padding: 2.75rem 0 1.75rem;
  }

  .auth-card-body,
  .auth-side{
    padding: 1.35rem;
  }

  .auth-card-title{
    font-size: 1.25rem;
  }
}
