/* style/register.css */

/* General styles for the register page, adhering to the dark background and light text */
.page-register {
  background-color: #0A0A0A; /* Page background color */
  color: #FFF6D6; /* Main text color for contrast on dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Section titles */
.page-register__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Main brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

/* Card styles - dark background, light text */
.page-register__card {
  background-color: #111111; /* Card background color */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #FFF6D6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B; /* Glow color on hover */
}

.page-register__card-title {
  font-size: 1.5em;
  color: #FFD36B; /* Auxiliary brand color for card titles */
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-register__card-text {
  font-size: 1em;
  color: #FFF6D6;
}

/* Button styles */
.page-register__btn-primary,
.page-register__btn-secondary,
.page-register a[class*="button"],
.page-register a[class*="btn"] {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-register__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom button gradient */
  color: #111111; /* Dark text on light button */
  border: none;
}

.page-register__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  color: #000000;
  box-shadow: 0 0 10px #FFD36B;
}