/* Masthead styling */
.masthead {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0; /* Adjust padding for a bigger header */
  color: white;
  text-align: center;
  overflow: hidden;
}

.masthead .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
}

.masthead .page-heading {
  position: relative;
  z-index: 1;
}

.masthead .page-heading h1 {
  font-size: 4rem; /* Big header */
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.masthead .page-heading .subheading {
  font-size: 2rem; /* Smaller sub-header */
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

/* Container styling */
.container {
  max-width: 1200px; /* Ensure full width */
  margin: 0 auto; /* Center the content */
  padding: 60px 0; /* Padding around the content */
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

.content {
  background: #f1f1f1; /* Light grey background */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.flash-message {
  font-size: 0.9rem; /* Smaller font size for flash messages */
  color: #dc3545;
  margin-bottom: 20px;
  background: #f8d7da;
  padding: 10px;
  border-radius: 4px;
}

/* Form styling */
form {
  margin-bottom: 20px;
}

form .form-group {
  margin-bottom: 1rem;
}

form .form-control {
  padding: 10px;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ced4da;
}

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

form .btn-primary {
  background-color: #206bfb;
  border-color: #206bfb;
  color: #ffffff;
  font-size: 1.1rem;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

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

form .btn-link {
  color: #206bfb;
  text-decoration: none;
}

form .btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}
