/* ===== LOGIN / SIGNUP PAGE STYLES ===== */

.auth-wrapper {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.auth-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
}

.auth-logo {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 8px;
}

.auth-title {
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  color: #f4a900;
  margin-bottom: 4px;
}

.auth-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 28px;
}

/* ===== TABS ===== */
.auth-tabs {
  display: flex;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 24px;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}

.auth-tab.active {
  background: #f4a900;
  color: #0a0e1a;
}

/* ===== INPUT FIELDS ===== */
.input-group {
  margin-bottom: 16px;
}

.input-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auth-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.auth-input:focus {
  border-color: #f4a900;
}

.auth-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.auth-select {
  cursor: pointer;
}

.auth-select option {
  background: #1a2035;
  color: #ffffff;
}

/* ===== AUTH BUTTON ===== */
.auth-btn {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 1rem;
}

/* ===== ERROR AND SUCCESS BOXES ===== */
.error-box {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: #ef4444;
  line-height: 1.5;
}

.success-box {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: #22c55e;
  line-height: 1.5;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .auth-card {
    padding: 28px 20px;
  }
}
/* ===== GOOGLE BUTTON ===== */
.google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #1a1a1a;
  border: none;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 16px;
}

.google-btn:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ===== DIVIDER ===== */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.divider span {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  font-weight: 600;
}
