/* Página de registro: fondo completo y caja central */
.manageuser-register-wrapper {
  align-items: center;
  background-color: #f5f5f5;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  min-height: 100vh;
  justify-content: center;
  padding: 2rem;
  width: 100%;
}

.manageuser-register-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  max-width: 420px;
  padding: 2rem;
  width: 100%;
}

.manageuser-already-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.manageuser-register-logo {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.manageuser-register-logo img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}
.manageuser-register-logo .logo-texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: black;
  font-weight: bold;
}
.manageuser-register-logo .logo-texts span:nth-child(1) {
  font-size: 1.2rem;
}
.manageuser-register-logo .logo-texts span:nth-child(2) {
  font-size: 1.2rem;
}
.manageuser-register-logo .logo-texts span:nth-child(3) {
  font-size: 1rem;
}

.manageuser-captcha {
  margin: 1rem 0;
}

.manageuser-terms {
  align-items: flex-start;
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}
.manageuser-terms label {
  cursor: pointer;
  font-size: 0.9rem;
}
.manageuser-terms a {
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
}
.manageuser-terms a:hover {
  color: #0d6efd;
  text-decoration: underline;
}
.manageuser-terms a:visited {
  color: #6f42c1;
}

.manageuser-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.manageuser-btn-signin {
  align-items: center;
  background: transparent;
  border: 2px solid #0b5fff;
  border-radius: 4px;
  color: #0b5fff;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  min-height: 38px;
  padding: 0.375rem 1rem;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.manageuser-btn-signin:hover {
  background-color: #0b5fff;
  color: #fff;
  text-decoration: none;
}

.manageuser-links-row {
  margin-top: 1rem;
  text-align: center;
}

.manageuser-link-forgot,
.manageuser-link-back,
.manageuser-link-register {
  font-size: 0.9rem;
  font-weight: 500;
}

.manageuser-sep {
  margin: 0 0.5rem;
  opacity: 0.7;
}