/* style/register.css */

/* Base styles for the register page, inheriting from shared.css */
/* Body padding-top is handled by shared.css, so no need to repeat var(--header-offset) here */
.page-register {
  color: #FFF6D6; /* Main text color for dark background */
  background-color: #0A0A0A; /* Page specific background, aligning with brand */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Container for content sections */
.page-register__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-register__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden; /* Ensure no image overflow */
}