/* --- Login Page Styles --- */
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 20px;
  background: linear-gradient(135deg, #ff512f, #dd2476); /* Brand Gradient */
}

.login-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.login-box h2 {
  color: #333;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #dd2476;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(221, 36, 118, 0.1);
}

.btn-primary {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff512f, #dd2476);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(221, 36, 118, 0.4);
}

.auth-switch {
  margin-top: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

.auth-switch a {
  color: #dd2476 !important; /* Override inline style if any */
  font-weight: 700;
  margin-left: 5px;
  transition: color 0.2s;
}

.auth-switch a:hover {
  color: #ff512f !important;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .login-box {
    padding: 25px 20px;
  }
  .login-box h2 {
    font-size: 1.5rem;
  }
}
