.page-register {
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for main content */
}

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

.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.page-register__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-register__hero-content {
  padding: 0 20px;
  max-width: 800px;
}

.page-register__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F3C54D; /* Gold for main title */
}

.page-register__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 200px; /* Ensure minimum size */
  min-height: 44px; /* Ensure minimum touch target */
}

.page-register__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 176, 74, 0.3);
}

.page-register__form-section {
  background-color: #2A1212;
  padding: 60px 20px;
  margin-bottom: 40px;
  border-radius: 10px;
  border: 1px solid #6A1E1E;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.page-register__form-section > div {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-register__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  color: #FFF1E8;
}

.page-register__section-title--gold {
  color: #F3C54D;
}

.page-register__section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF1E8;
}

.page-register__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.page-register__form-group {
  display: flex;
  flex-direction: column;
}

.page-register__form-label {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #FFF1E8;
}

.page-register__form-input {
  padding: 12px 15px;
  border: 1px solid #6A1E1E;
  border-radius: 5px;
  background-color: #140C0C;
  color: #FFF1E8;
  font-size: 1rem;
  min-width: 200px; /* Ensure minimum size */
  min-height: 44px; /* Ensure minimum touch target */
}

.page-register__form-input::placeholder {
  color: rgba(255, 241, 232, 0.6);
}

.page-register__form-input:focus {
  outline: none;
  border-color: #FFB04A;
}

.page-register__form-agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.page-register__checkbox {
  margin-top: 4px;
  min-width: 20px; /* Ensure minimum size */
  min-height: 20px; /* Ensure minimum size */
}

.page-register__checkbox-label {
  color: #FFF1E8;
}

.page-register__agreement-link {
  color: #FFB04A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-register__agreement-link:hover {
  color: #F3C54D;
}

.page-register__submit-button {
  padding: 15px 25px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 44px; /* Ensure minimum touch target */
}

.page-register__submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 176, 74, 0.3);
}

.page-register__form-image-wrapper {
  text-align: center;
}

.page-register__form-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-register__benefits-section {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.page-register__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-register__benefit-card {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-register__benefit-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
  object-fit: contain;
}

.page-register__benefit-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFB04A;
}

.page-register__benefit-description {
  font-size: 1rem;
  color: #FFF1E8;
}

.page-register__cta-section {
  background-color: #2A1212;
  padding: 80px 20px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #6A1E1E;
  margin-bottom: 40px;
}

.page-register__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2rem;
  min-width: 200px; /* Ensure minimum size */
  min-height: 44px; /* Ensure minimum touch target */
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-register__form-section {
    flex-direction: column;
  }

  .page-register__form-section > div {
    flex: 1 1 100%;
  }

  .page-register__hero-content {
    padding: 0 15px;
  }

  .page-register__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

@media (max-width: 768px) {
  .page-register__hero-image,
  .page-register__form-image,
  .page-register__benefit-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-register__benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 549px) {
  .page-register__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-register__section-title {
    font-size: 2rem;
  }

  .page-register__cta-button,
  .page-register__submit-button,
  .page-register__cta-button--large {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .page-register__form-agreement {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-register__checkbox {
    margin-left: 0;
  }
}