/* Import the main styles */
@import url("dashboard.css");

/* Additional styles for the Get a Franchise page */
.franchise-section {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.franchise-section h1 {
  color: #130a58;
  margin-bottom: 20px;
  font-size: 2.5em;
  font-weight: bold;
}

.franchise-section p {
  color: #555555;
  margin-bottom: 40px;
  font-size: 1.2em;
}

.franchise-form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.franchise-form form {
  display: flex;
  flex-direction: column;
}

.franchise-form label {
  color: #130a58;
  margin-bottom: 8px;
  font-weight: bold;
}

.franchise-form input,
.franchise-form textarea {
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  transition: border-color 0.3s ease-in-out;
}

.franchise-form input:focus,
.franchise-form textarea:focus {
  border-color: #130a58;
  outline: none;
}

.franchise-form button {
  background-color: #130a58;
  color: #ffffff;
  padding: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2em;
  transition: background-color 0.3s, transform 0.2s;
}

.franchise-form button:hover {
  background-color: #0f0744;
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .franchise-section {
    padding: 40px 10px;
  }

  .franchise-form {
    padding: 20px;
  }

  .franchise-form input,
  .franchise-form textarea {
    font-size: 0.9em;
  }

  .franchise-form button {
    font-size: 1em;
}
}