/* General Reset */
body.pm-register-body, html {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', sans-serif;
    height: 100%;
    width: 100%;
  }
  
  /* Contenedor principal */
  .pm-register-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  /* Fondo de imagen */
  .pm-register-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
  }
  
  /* Capa oscura encima del fondo */
  .pm-register-overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 20%, rgba(0, 0, 0, 0.1) 80%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
  }
  
  /* Contenido de texto y botones */
  .pm-register-content {
    width: 100%;
    text-align: center;
    color: white;
  }
  
  /* Texto */
  .pm-register-title {
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .pm-register-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    color: #f0f0f0;
  }
  
  /* Botones */
  .pm-register-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .pm-register-btn {
    width: 100%;
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
  }
  
  /* Estilos de botones individuales */
  .pm-sms-btn {
    background-color: #25d366;
    color: white;
  }
  
  .pm-account-btn {
    background-color: #ffffff;
    color: #222;
  }
  
  .pm-business-btn {
    background-color: #0d6efd;
    color: white;
  }
  
  /* Hover (opcional) */
  .pm-register-btn:hover {
    opacity: 0.9;
  }

  /* Header con flecha y logo */
.pm-register-header {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
  }
  
  .pm-register-back {
    color: white;
    font-size: 2.5rem;
    text-decoration: none;
    font-weight: bold;
  }
  
  .pm-register-logo {
    max-height: 100px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 100px;
    transform: translateX(-50%);
  }