
/* ===============================
   Soft Scout – Auth Layout
   =============================== */

.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F3EA;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

/* Background Orbs (Soft Scout atmosphere) */
.auth-bg .auth-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.auth-orb--1 {
  width: 400px;
  height: 400px;
  background: #7FAF8C;
  top: -100px;
  left: -100px;
}

.auth-orb--2 {
  width: 350px;
  height: 350px;
  background: #2F6B4F;
  bottom: -120px;
  right: -120px;
}

/* Card */
.auth-card {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 25px 60px rgba(31, 77, 58, 0.12);
  position: relative;
  z-index: 2;
}

/* Logo Area */
.auth-header {
  text-align: center;
  margin-bottom: 28px;
}

.auth-logo {
  width: 260px;
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto 16px auto;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.08));
  transition: transform 0.3s ease;
}

.auth-logo:hover {
  transform: scale(1.03);
}

.auth-brand__tag {
  color: #6B6B63;
  font-size: 14px;
}

/* Title */
.auth-title {
  font-size: 22px;
  font-weight: 600;
  color: #1F4D3A;
  margin-bottom: 10px;
  text-align: center;
}

/* Subtitle */
.auth-subtitle {
  text-align: center;
  font-size: 14px;
  color: #6B6B63;
  margin-bottom: 24px;
}

/* Buttons */
.btn-success {
  background-color: #2F6B4F;
  border-color: #2F6B4F;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-success:hover {
  background-color: #1F4D3A;
  border-color: #1F4D3A;
  transform: translateY(-1px);
}

/* Footer */
.auth-footer {
  text-align: center;
  margin-top: 28px;
}

/* Responsive */
@media (max-width: 768px) {
  .auth-card {
    padding: 30px 24px;
  }

  .auth-logo {
    width: 190px;
  }
}
