/* Reset margin and padding */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
}


/* Text styling */
h1 {
  font-size: 2.5rem;
  color: #343a40;
}

.lead {
  font-size: 1.25rem;
  color: #6c757d;
}

.thetext {
  font-size: 1.1rem;
  color: #495057;
}

/* Card (form) styling */
.card {
  border: none;
  border-radius: 8px;
  background: #ffffff;
}

.btn-primary {
  background-color: #007bff;
  border: none;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Form input styling */
.form-control {
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 12px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Footer */
footer {
  background-color: #e9ecef;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  h1 {
      font-size: 2rem;
  }

  .lead, .thetext {
      font-size: 1rem;
  }
}

@media (max-width: 576px) {
  h1 {
      font-size: 1.75rem;
  }

  .lead, .thetext {
      font-size: 0.9rem;
  }

  .form-control {
      font-size: 0.85rem;
  }
}
