/* ==========================================
   LIGHT PREMIUM BACKGROUND + GREEN ACCENTS
========================================== */

/* Page background */
body, #auth {
  background: linear-gradient(135deg, #f6fff9, #eafff3, #f9fffc);
  min-height: 100vh;
}

/* Card container */
#auth .card {
  background: #ffffff !important;
  border-radius: 14px;
  border: 1px solid #e7f7ef;
  box-shadow: 0 8px 25px rgba(0, 191, 99, 0.12);
  transition: 0.25s ease;
}

#auth .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 191, 99, 0.18);
}

/* Title */
#auth h3 {
  color: #00bf63 !important;
  font-weight: 800;
}

/* Labels */
#auth label {
  color: #222 !important;
  font-weight: 600;
}

/* ==========================================
   FORM GROUP (IMPORTANT)
========================================== */
.form-group {
  position: relative;
}

/* ==========================================
   INPUT FIELD (ICON SAFE)
========================================== */
#auth .form-control {
  background: #ffffff;
  border: 1px solid #cfeee2;
  border-radius: 30px !important;
  padding: 12px 50px !important;   /* LEFT + RIGHT spacing for icons */
  height: 48px;
  color: #333;
  transition: 0.2s ease;
}

/* Focus */
#auth .form-control:focus {
  border-color: #00bf63;
  box-shadow: 0 0 0 0.12rem rgba(0, 191, 99, 0.25);
}

/* Placeholder */
#auth input::placeholder {
  color: #9ca3af;
}

/* ==========================================
   LEFT ICON INSIDE INPUT
========================================== */
.form-control-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #7a7a7a;
  pointer-events: none;
  font-size: 16px;
}

/* Change icon color on focus */
#auth .form-control:focus ~ .form-control-icon {
  color: #00bf63;
}

/* ==========================================
   RIGHT ICON (PASSWORD / EYE / KEY)
========================================== */
.form-control-icon-right {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #7a7a7a;
  cursor: pointer;
  font-size: 16px;
}

/* ==========================================
   PRIMARY BUTTON
========================================== */
#form-submit-button,
.btn-primary {
  background: linear-gradient(180deg, #00bf63, #009a50);
  border: none;
  border-radius: 30px;
  color: #fff !important;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 18px;
  width: 100%;
  box-shadow: 0 6px 16px rgba(0, 191, 99, 0.35);
  transition: 0.18s ease;
}

#form-submit-button:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 191, 99, 0.45);
}

/* ==========================================
   LINKS
========================================== */
#auth a {
  color: #00bf63 !important;
  font-weight: 600;
}

/* ==========================================
   GOOGLE LOGIN BUTTON
========================================== */
.btn-outline-primary {
  border-radius: 30px;
  padding: 12px 18px;
  font-weight: 600;
}