/* style/register.css */
.page-register {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--Text-Main, #F2FFF6); /* Default text color for the page */
  background-color: var(--Background, #08160F); /* Page background from custom palette */
}

.page-register__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register__section {
  padding: 60px 0;
  text-align: center;
}

.page-register__dark-section {
  background-color: var(--Card-B-G, #11271B); /* Darker background for specific sections */
}

.page-register__section-title {
  font-size: 3em;
  font-weight: bold;
  color: var(--Text-Main, #F2FFF6);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-register__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Use clamp for H1 */
  font-weight: bold;
  color: var(--Text-Main, #F2FFF6);
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__section-description,
.page-register__hero-description {
  font-size: 1.2em;
  color: var(--Text-Secondary, #A7D9B8);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}