body {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #f5f5f5;
}

.request-layout {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 1100px;
  padding: 3rem 2rem;
  box-sizing: border-box;
}

/* Marketing hero (shared look with login) */
.hero {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
}

.hero-logo-link img {
  height: 6rem;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: 2.2rem;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #1a1a1a;
}

.hero-subhead {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #444;
  margin: 0 0 1.75rem;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-benefits li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  line-height: 1.45;
  color: #444;
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background-color: var(--color-brand);
}

.hero-benefit-title {
  display: block;
  font-weight: 700;
  color: #1a1a1a;
}

/* Request card */
.request-card {
  flex: 0 0 400px;
  align-self: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border-radius: 5px;
  background-color: white;
  box-sizing: border-box;
}

.request-card-title {
  text-align: center;
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  color: #1a1a1a;
}

.request-card-intro {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin: 0 0 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}

.input-group {
  width: 100%;
  margin-bottom: 1rem;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  outline: none;
  border: none;
  height: 1.5rem;
  padding: 0.5rem;
  font-size: 1rem;
  background-color: #feebce;
  text-align: center;
  border-radius: 0;
  box-sizing: border-box;
}

select {
  width: 100%;
  outline: none;
  border: none;
  height: 2.5rem;
  padding: 0.5rem;
  font-size: 1rem;
  background-color: #feebce;
  text-align: center;
  border-radius: 0;
  box-sizing: border-box;
}

button {
  width: 100%;
  height: 2.5rem;
  font-size: 1.25rem;
  text-align: center;
  background-color: var(--color-brand-dark);
  color: white;
  border: none;
  border-radius: 0;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--color-brand-darker);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkbox-group {
  font-size: 0.85rem;
  color: #555;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  text-align: left;
}

input[type="checkbox"] {
  transform: scale(0.9);
  margin-top: 0.15rem;
}

.request-disclaimer {
  font-size: 0.8rem;
  color: #666;
}

.center {
  text-align: center;
}

.italic {
  font-style: italic;
}

.hidden {
  display: none;
}

.button {
  width: 100%;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.button a {
  text-decoration: none;
  color: inherit;
}

.button a.underline {
  text-decoration: underline;
}

.borderless {
  border: none;
  background-color: initial;
}

.request-success-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
  text-align: center;
  margin: 0 0 1.5rem;
}

.request-success-back {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
}

@media (max-width: 900px) {
  .request-layout {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  .hero {
    flex: 1 1 auto;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .hero-headline {
    font-size: 1.8rem;
  }
  .hero-benefits {
    text-align: left;
  }
  .request-card {
    flex: 1 1 auto;
    width: 100%;
    max-width: 400px;
  }
}
