.page-register {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #FFFFFF; /* Explicitly set for content area */
}

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

.page-register__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #017439;
}

.page-register__section-title--white {
  color: #FFFFFF;
}

.page-register__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

.page-register__section-description--white {
  color: #f0f0f0;
}

.page-register__btn-primary,
.page-register__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-register__btn-primary {
  background: #C30808; /* Custom color for register */
  color: #FFFF00; /* Custom font color for register/login */
  border: 2px solid #C30808;
}

.page-register__btn-primary:hover {
  background: #a30606;
  border-color: #a30606;
}

.page-register__btn-secondary {
  background: transparent;
  color: #C30808; /* Custom color for login */
  border: 2px solid #C30808;
}

.page-register__btn-secondary:hover {
  background: #C30808;
  color: #FFFF00; /* Custom font color for register/login */
}

.page-register__btn-text-link {
  color: #017439;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  display: inline-block;
}

.page-register__btn-text-link:hover {
  text-decoration: underline;
}