/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background Gradient */
body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #6e7bff, #96c6ff);
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  color: #333;
  padding: 50px 0;
}

/* Navbar */
nav {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
  font-weight: bold;
  color: #333;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin: 30px 0;
  color: #fff;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Form Section */
.form-section {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #6e7bff;
}

.btn {
  border-radius: 30px;
  padding: 12px 30px;
  background-color: #6e7bff;
  border: none;
  color: white;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #4a5bd1;
}

/* Footer */
footer {
  background-color: #ffffff;
  text-align: center;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Media Queries for Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .form-section {
    padding: 20px;
  }
}
