/* ================================================
   SWIFTEKART – LOGIN / SIGN UP PAGES
================================================ */
.auth-wrapper {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background: #f6f8f6;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(20,60,30,0.08);
  padding: 40px 36px;
}

.auth-card h1 {
  font-size: 24px;
  font-weight: 800;
  color: #14251a;
  margin-bottom: 6px;
  text-align: center;
}

.auth-card .auth-sub {
  font-size: 13.5px;
  color: #888;
  text-align: center;
  margin-bottom: 28px;
}

.auth-field {
  margin-bottom: 18px;
}

.auth-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

.auth-field input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #222;
  transition: border-color .2s ease;
}

.auth-field input:focus {
  outline: none;
  border-color: #2e7d32;
}

.auth-error {
  background: #fdeaea;
  color: #c62828;
  border: 1px solid #f5c6cb;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  margin-bottom: 18px;
}

.auth-success {
  background: #eaf6ec;
  color: #2e7d32;
  border: 1px solid #cfe9d2;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  margin-bottom: 18px;
}

.auth-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #2e7d32, #388e3c);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 8px 20px rgba(46,125,50,0.22);
  transition: transform .15s ease, box-shadow .2s ease;
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(46,125,50,0.3);
}

.auth-switch {
  text-align: center;
  font-size: 13.5px;
  color: #666;
  margin-top: 22px;
}

.auth-switch a {
  color: #2e7d32;
  font-weight: 700;
  text-decoration: none;
}

.auth-switch a:hover { text-decoration: underline; }
