/* style/register.css */

/* Base Styles */
.page-register {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default dark text for light background */
  line-height: 1.6;
  background-color: #FFFFFF;
}

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

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

.page-register__dark-bg {
  background-color: #26A9E0; /* Brand primary color */
  color: #FFFFFF; /* White text for dark background */
}

.page-register__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-register__section-title {
  font-size: 2.5em;
  color: inherit;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-register__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFFFFF;
  border-radius: 2px;
}

.page-register__dark-bg .page-register__section-title::after {
  background-color: #FFFFFF;
}

.page-register__light-bg .page-register__section-title::after {
  background-color: #26A9E0;
}

.page-register__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}