/* === GLOBAL RESET === */
body {
  background: linear-gradient(135deg, #6C63FF, #C56CF0);
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #fff;
  padding-bottom: 40px;
}

/* Center container */
.container {
  margin-top: 40px;
}

/* === SEARCH CARD === */
.card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
}

/* Titles */
h1.display-4, h2, .card-title {
  font-weight: 700;
  color: #ffffff;
}

/* Subtitles */
.card-subtitle {
  color: #e4d8ff !important;
}

/* === BUTTONS === */
.btn-primary {
  background: linear-gradient(135deg, #7A5CFF, #F46EDF);
  border: none;
  color: white;
  font-weight: 600;
  transition: 0.25s ease;
  border-radius: 10px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8860ff, #ff7bf5);
  transform: scale(1.03);
}

.btn-outline-primary {
  border-color: #fff;
  color: #fff;
}

.btn-outline-primary:hover {
  background: #fff;
  color: #6C63FF;
}

/* Save button */
.btn-outline-success {
  border-color: #b0ffda;
  color: #b0ffda;
}

.btn-outline-success:hover {
  background: #b0ffda;
  color: #1e1e1e;
}

/* Icons + small text */
.text-muted {
  color: #ece6ff !important;
}

.card-text {
  color: #f2eaff;
}

/* Cards grid */
.col-md-6 {
  display: flex;
}
.card.h-100 {
  display: flex;
  flex-direction: column;
}
.footer {
  width: 100%;
  padding: 22px 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.85;
  backdrop-filter: blur(8px);
}
/* =============================
   AUTH PAGE UI
============================= */

.auth-container {
  max-width: 420px;
  margin: 120px auto;
  background: rgba(255, 255, 255, 0.10);
  padding: 35px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.auth-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
}

.auth-form label {
  color: #f2eaff;
  font-weight: 600;
}

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

.auth-field input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  outline: none;
}

.auth-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #7A5CFF, #F46EDF);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.auth-btn:hover {
  transform: scale(1.03);
  background: linear-gradient(135deg, #8b70ff, #ff7ff3);
}

.auth-error {
  background: rgba(255, 100, 100, 0.19);
  padding: 10px;
  border-radius: 8px;
  color: #ffdede;
  margin-bottom: 18px;
}

.auth-error-text {
  color: #ffdddd;
}

.auth-switch {
  margin-top: 18px;
  font-size: 0.95rem;
  color: #f2eaff;
}

.auth-switch a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
}

