/* GENERAL LAYOUT */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #fdfbfb, #ebedee);
  color: #333;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.container-fluid {
  padding: 2rem;
}

/* HERO SECTION */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5vh 2rem;
  min-height: 90vh;
  background: linear-gradient(135deg, #42A5F5, #66BB6A);
  color: white;
  border-radius: 0 0 30px 30px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* BUTTON STYLING */
.btn-primary {
  background-color: #FF7043;
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #e85c2d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,112,67,0.4);
}

.btn-outline-primary {
  border: 2px solid white;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  transition: 0.3s ease-in-out;
}

.btn-outline-primary:hover {
  background-color: white;
  color: #42A5F5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,255,255,0.4);
}

/* CARD / FORM STYLING */
.card {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-control:focus {
  border-color: #66BB6A;
  box-shadow: 0 0 0 0.2rem rgba(102, 187, 106, 0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
}

