* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(145deg, #0e3c50 0%, #0f8fa8 50%, #48e2b9 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: #fff;
}

.registro-container {
  width: 100%;
  max-width: 450px;
  background: rgba(255,255,255,0.12);
  padding: 35px;
  border-radius: 22px;
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  animation: fadeUp 0.8s ease;
}

.titulo {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 5px;
  font-weight: 700;
}

.subt {
  text-align: center;
  opacity: 0.8;
  margin-bottom: 25px;
}

.disclaimer {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  color: #e6fbff;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.4;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.disclaimer strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 700;
}

.form-status {
  text-align: center;
  min-height: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #cdeff0;
}

.form-status.error {
  color: #ffb3b3;
}

.formulario {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.campo label {
  font-size: 0.9rem;
  margin-bottom: 5px;
  display: block;
}

.campo input,
.campo select {
  width: 100%;
  padding: 13px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: 0.25s ease;
}

.campo input:focus,
.campo select:focus {
  transform: translateY(-2px);
  border-color: #48e2b9;
  background: rgba(255,255,255,0.25);
}

.btn-registrar {
  background: #48e2b9;
  border: none;
  padding: 15px;
  margin-top: 10px;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  color: #08353c;
  transition: 0.25s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn-registrar:hover {
  transform: translateY(-3px);
  background: #5ef0c8;
}

.login-link {
  margin-top: 20px;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.9;
}

.login-link a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

/* Animación */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 460px) {
  .registro-container {
    padding: 28px;
  }
}

.verify-modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 17, 30, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.verify-modal.visible {
  opacity: 1;
  pointer-events: all;
}

.verify-modal__card {
  max-width: 420px;
  width: 100%;
  background: #062f3b;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(72, 226, 185, 0.4);
}

.verify-modal__card h2 {
  margin-bottom: 12px;
}

.btn-modal-primary {
  margin-top: 18px;
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #48e2b9;
  color: #08353c;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-modal-primary:hover {
  background: #5ef0c8;
  transform: translateY(-2px);
}
