.em-bodas-register {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Columna izquierda */
.em-bodas-left {
  background: url("https://eventosymatrimonios.com/wp-content/uploads/2025/11/elegant-wedding-set-up.jpg") center/cover no-repeat;
  position: relative;
  color: #fff;
}

.em-bodas-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.em-bodas-left-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 2;
}

.em-heart {
  font-size: 40px;
  margin-bottom: 15px;
}

.em-bodas-left h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: white !important;
}

/* Columna derecha */
.em-bodas-right {
  padding: 60px;
  max-width: 640px;
}

.em-bodas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.em-logo {
  height: 65px;
}

.em-help {
  font-size: 14px;
  color: #444;
}

.em-bodas-right h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.em-subtitle {
  color: #666;
  margin-bottom: 30px;
}

/* Formulario */
.em-bodas-form h3 {
  font-size: 16px;
  margin: 25px 0 10px;
}

.em-bodas-form input,
.em-bodas-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-bottom: 16px;
  font-size: 15px;
}

.em-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.em-checkbox {
  font-size: 14px;
  color: #555;
  display: block;
  margin: 20px 0;
}

.em-checkbox a {
  color: #e74c5b;
  text-decoration: none;
}

.em-submit {
  background: #e74c5b;
  color: #fff;
  padding: 14px;
  width: 100%;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .em-bodas-register {
    grid-template-columns: 1fr;
  }

  .em-bodas-left {
    display: none;
  }

  .em-bodas-right {
    padding: 30px;
  }
}

/* --- Layout Cliente: form izquierda + imagen derecha --- */
.em-bodas-register--cliente{
  flex-direction: row;
}
.em-bodas-left--cliente{
  order: 2;
}
.em-bodas-right--cliente{
  order: 1;
}

.em-bodas-form input[type="password"] {
  margin-top: 10px;
  margin-bottom: 10px !important;
}

.em-checkbox{
  display:flex;
  align-items:center; /* 👈 clave */
  gap:10px;
  margin-top:18px;
  line-height:1.4;
}

.em-checkbox input{
  width:16px;
  height:16px;
  flex-shrink:0;
  margin:0; /* 👈 evita desplazamientos raros */
}