/* style/register.css */

/* Variables for consistency */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --accent-color: #EA7C07; /* For login/register specific elements */
  --text-on-dark: #ffffff;
  --text-on-light: #333333;
  --bg-dark: #0a0a0a; /* Body background from shared.css */
  --bg-light: #f8f9fa; /* Light background for sections */
  --card-bg-dark-section: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark background */
  --card-bg-light-section: #ffffff; /* White background for cards on light sections */
  --border-color: #e0e0e0;
}

/* Base styles for the page content */
.page-register {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-on-dark); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* This should be inherited from body, but explicitly set for safety */
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

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