/* Page-specific styles for register page */

/* NOTE: .feedback-message base is defined in page-layout.css */

.register-title {
  text-align: center;
  color: #1e3a8a;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}

.register-description {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 8px;
}

.register-description u {
  text-decoration: underline;
}


.register-form {
  margin-top: 12px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row .form-group {
  flex: 1;
  min-width: 0;
}

.terms-check {
  margin-bottom: 16px;
  font-size: 13px;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.terms-check label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.terms-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #1e3a8a;
  flex-shrink: 0;
  cursor: pointer;
}

.policy-link {
  color: #1e3a8a;
  text-decoration: underline;
  font-weight: 600;
}

.policy-link:hover {
  color: #1e40af;
}

.btn-solicitar {
  background: #ffffff;
  color: #6b7280;
  border: 1px solid #d1d5db;
  margin-bottom: 10px;
}

.btn-solicitar:not(:disabled) {
  background: #1e3a8a;
  color: #ffffff;
  border-color: #1e3a8a;
}

.btn-solicitar:not(:disabled):hover {
  background: #1e40af;
}

.btn-solicitar:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-solicitar:active:not(:disabled) {
  transform: scale(0.99);
}

.btn-retornar {
  background: #ffffff;
  color: #16a34a;
  border: 1px solid #16a34a;
}

.btn-retornar:hover {
  background: #f0fdf4;
}

.btn-retornar:active {
  transform: scale(0.99);
}

@media (max-width: 1024px) {
  .page-image {
    display: none;
  }

  .page-panel {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-content {
    max-width: none;
    padding: 28px 16px 24px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .logo-container img {
    max-width: 190px;
  }

  .register-title {
    font-size: 24px;
  }

  .btn-solicitar,
  .btn-retornar {
    font-size: 16px;
  }
}
