/* style/register.css */

/* Base styles for the register page */
.page-register {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main from custom palette */
  background-color: #0A0A0A; /* Background from custom palette */
}

/* Hero Section */
.page-register__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding-bottom: 60px; /* Space below content */
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  box-sizing: border-box;
}

.page-register__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for the image */
  margin-bottom: 40px; /* Space between image and content */
  position: relative;
  z-index: 1; /* Ensure image is below any potential overlay (though we avoid text overlay) */
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  min-height: 200px; /* Enforce min image size */
}

.page-register__hero-content {
  position: relative;
  z-index: 2; /* Ensure text is above image if any overlap happens (though avoided by design) */
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-register__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  color: #F2C14E; /* Main brand color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-register__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
}

/* General Section Styling */
.page-register__section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background from custom palette */
  box-sizing: border-box;
}

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

.page-register__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Main brand color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-register__section-description {
  font-size: 1.1rem;
  color: #FFF6D6; /* Text Main */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-register__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #FFD36B; /* Auxiliary brand color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-register__text {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 15px;
}

.page-register__link {
  color: #F2C14E; /* Main brand color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-register__link:hover {
  color: #FFD36B; /* Auxiliary brand color on hover */
  text-decoration: underline;
}