/* style.css */

/* Color Palette */
:root {
  --primary: #5B86E5;
  --secondary: #36D1DC;
  --bg-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --surface: #ffffff;
  --text-primary: #333333;
  --text-secondary: #666666;
}

/* Full‑screen centered */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-gradient);
  font-family: 'Segoe UI', sans-serif;
}

/* Card Container */
.card {
  width: 100%;
  max-width: 400px;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Header with gradient */
.card-header {
  background: var(--bg-gradient);
  color: var(--surface);
  text-align: center;
  font-size: 1.5rem;
  padding: 1rem 0;
}

/* White surface for form */
.card-body {
  background: var(--surface);
  padding: 1.5rem;
}

/* Input styles */
.form-control,
.form-select {
  border: none;
  border-bottom: 2px solid #ddd;
  border-radius: 0;
  box-shadow: none;
  padding-left: 0;
  transition: border-bottom-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-bottom-color: var(--secondary);
  box-shadow: none;
}

/* Labels */
.form-label {
  color: var(--text-primary);
  font-weight: 600;
}

/* Button */
.btn-primary {
  background: var(--secondary) !important;
  border: none;
  border-radius: 50px;
  padding: 0.75rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary) !important;
}

/* Small helper text or placeholders */
::placeholder {
  color: var(--text-secondary);
  opacity: 1;
}
