* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: "Baloo 2", cursive;
}


.hero__section {
  padding-block: 100px;
}

.form__section {
  padding-block: 50px 25px;
}

.hero-title {
  font-size: 79px;
  line-height: 1.1;
  color: #1e88e5;
}

.hero-subtitle {
  font-size: 37px;
  line-height: 1.15;
  color: #90a4ae;
}

.hero-subtitle__primary {
  background: #004b8c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-radius: 99px;
  padding: 10px 30px;
  min-width: 200px;
  border: none;
}

.hero-subtitle__secondary {
  background: #1e88e5;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-radius: 99px;
  padding: 10px 30px;
  flex: 1;
  max-width: 300px;
  border: none;
}

/* Add these styles to your existing style.css file */

.form-container {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
}

.form-container h2 {
  color: #1e88e5;
  font-size: 2.5rem;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control {
  padding: 0.75rem 1rem;
  border-radius: 15px;
  border: 1px solid #dee2e6;
}

.form-control:focus {
  border-color: #1e88e5;
  box-shadow: 0 0 0 0.25rem rgba(30, 136, 229, 0.25);
}

.form__button-wrapper {
  max-width: 300px;
}

.footer__section {
  color: #4d4d4d;
}
