 :root{
      --c360-bg:#041020;
      --c360-bg2:#061326;
      --c360-bg3:#082342;
      --c360-blue:#2378ff;
      --c360-cyan:#00d4ff;
      --c360-green:#30e6b1;
      --c360-white:#ffffff;
      --c360-text:#eaf6ff;
      --c360-muted:#8fb4d6;
      --c360-dark:#07111f;
      --c360-card:#ffffff;
      --c360-card-soft:#f8fbff;
      --c360-border:rgba(148,210,255,.22);
      --c360-border-dark:rgba(15,23,42,.10);
      --c360-shadow:0 28px 90px rgba(0,0,0,.36);
      --c360-shadow-card:0 22px 50px rgba(3,18,38,.14);
      --radius-xl:34px;
      --radius-lg:28px;
      --radius-md:20px;
    }

    *{
      box-sizing:border-box;
    }

    html{
      min-height:100%;
      scroll-behavior:smooth;
    }

    body{
      min-height:100vh;
      margin:0;
      font-family:"Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color:var(--c360-dark);
      background:
        radial-gradient(850px 420px at 8% 0%, rgba(35,120,255,.30), transparent 62%),
        radial-gradient(760px 420px at 92% 4%, rgba(48,230,177,.20), transparent 62%),
        linear-gradient(145deg, #041020 0%, #061426 42%, #081a33 100%);
      overflow-x:hidden;
    }

    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.78), transparent 82%);
      z-index:0;
    }

    body::after{
      content:"";
      position:fixed;
      inset:auto -160px -160px auto;
      width:420px;
      height:420px;
      border-radius:999px;
      pointer-events:none;
      background:conic-gradient(from 180deg, var(--c360-blue), var(--c360-cyan), var(--c360-green), var(--c360-blue));
      opacity:.10;
      filter:blur(10px);
      z-index:0;
    }

    .registro-page{
      position:relative;
      z-index:1;
      padding:24px 0 54px;
    }

    .registro-container{
      width:min(1120px, calc(100% - 24px));
      margin:0 auto;
    }

    .registro-card{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      background:rgba(255,255,255,.96);
      border:1px solid rgba(148,210,255,.24);
      box-shadow:var(--c360-shadow);
    }

    .registro-card::before{
      content:"";
      position:absolute;
      left:0;
      right:0;
      top:0;
      height:5px;
      background:linear-gradient(90deg, var(--c360-blue), var(--c360-cyan), var(--c360-green));
      z-index:4;
    }

    .registro-hero{
      position:relative;
      overflow:hidden;
      color:#fff;
      padding:26px;
      background:
        radial-gradient(620px 240px at 8% 8%, rgba(0,212,255,.34), transparent 64%),
        radial-gradient(620px 260px at 95% 0%, rgba(48,230,177,.22), transparent 64%),
        linear-gradient(135deg, rgba(6,19,38,.98), rgba(8,35,66,.96));
    }

    .registro-hero::before{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(115deg, rgba(255,255,255,.14), transparent 35%),
        radial-gradient(430px 170px at 75% 18%, rgba(35,120,255,.28), transparent 62%);
      z-index:1;
    }

    .registro-hero::after{
      content:"";
      position:absolute;
      right:-90px;
      bottom:-115px;
      width:310px;
      height:310px;
      border-radius:50%;
      background:conic-gradient(from 180deg, var(--c360-blue), var(--c360-cyan), var(--c360-green), var(--c360-blue));
      opacity:.18;
      filter:blur(7px);
      pointer-events:none;
      z-index:1;
    }

    .hero-content{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:18px;
      align-items:center;
    }

    .hero-logo{
      width:78px;
      height:78px;
      border-radius:24px;
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.18);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 18px 40px rgba(0,0,0,.28),
        0 0 34px rgba(0,212,255,.18);
      backdrop-filter:blur(16px);
      flex-shrink:0;
    }

    .hero-logo img{
      width:66px;
      max-height:66px;
      object-fit:contain;
      filter:drop-shadow(0 10px 18px rgba(0,0,0,.28));
    }

    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border-radius:999px;
      font-weight:900;
      font-size:12px;
      color:#dffbff;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(148,210,255,.22);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.14);
      margin-bottom:8px;
    }

    .hero-kicker i{
      color:var(--c360-green);
    }

    .hero-title{
      margin:0;
      color:#fff;
      font-size:clamp(25px, 3.4vw, 42px);
      font-weight:950;
      line-height:1.05;
      letter-spacing:-1.1px;
    }

    .hero-subtitle{
      margin:10px 0 0;
      max-width:780px;
      color:rgba(234,246,255,.86);
      font-size:15px;
      line-height:1.6;
      font-weight:650;
    }

    .login-cta{
      position:relative;
      overflow:hidden;
      text-decoration:none !important;
      display:flex;
      align-items:center;
      gap:12px;
      min-width:270px;
      padding:13px 14px;
      border-radius:20px;
      color:#061326 !important;
      background:linear-gradient(135deg, var(--c360-cyan), var(--c360-green));
      border:1px solid rgba(255,255,255,.28);
      box-shadow:0 18px 42px rgba(0,212,255,.24);
      font-weight:950;
      transition:transform .18s ease, filter .18s ease, box-shadow .18s ease;
    }

    .login-cta::after{
      content:"";
      position:absolute;
      top:-80%;
      left:-25%;
      width:54%;
      height:260%;
      transform:rotate(22deg);
      background:linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
      animation:shine360 3s ease-in-out infinite;
      pointer-events:none;
    }

    @keyframes shine360{
      0%{ transform:translateX(-140%) rotate(22deg); opacity:0; }
      22%{ opacity:1; }
      50%{ transform:translateX(280%) rotate(22deg); opacity:0; }
      100%{ opacity:0; }
    }

    .login-cta:hover{
      transform:translateY(-2px);
      filter:brightness(1.04);
      box-shadow:0 22px 54px rgba(48,230,177,.28);
    }

    .login-cta-ic,
    .login-cta-go{
      position:relative;
      z-index:2;
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      color:#061326;
      background:rgba(255,255,255,.42);
      border:1px solid rgba(255,255,255,.35);
      flex:0 0 auto;
    }

    .login-cta-txt{
      position:relative;
      z-index:2;
      display:flex;
      flex-direction:column;
      gap:3px;
      flex:1;
      min-width:0;
    }

    .login-cta-txt b{
      font-size:14px;
      line-height:1.1;
      font-weight:950;
      color:#061326;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .login-cta-txt small{
      color:rgba(6,19,38,.72);
      font-size:12px;
      font-weight:850;
    }

    .steps{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:12px;
      margin-top:22px;
    }

    .step{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:22px;
      color:#fff;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.12);
      backdrop-filter:blur(14px);
    }

    .step .n{
      width:36px;
      height:36px;
      border-radius:14px;
      display:grid;
      place-items:center;
      color:#061326;
      background:linear-gradient(135deg, var(--c360-cyan), var(--c360-green));
      font-weight:950;
      flex:0 0 auto;
    }

    .step b{
      display:block;
      color:#fff;
      font-weight:950;
      font-size:13px;
      line-height:1.2;
    }

    .step span{
      display:block;
      margin-top:4px;
      color:rgba(234,246,255,.78);
      font-size:12px;
      line-height:1.4;
      font-weight:650;
    }

    #formvotantes{
      padding:20px;
      font-size:16px;
    }

    .section{
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(420px 150px at 0% 0%, rgba(35,120,255,.10), transparent 62%),
        linear-gradient(180deg, #ffffff, #f8fbff);
      border:1px solid rgba(15,23,42,.10);
      border-radius:28px;
      box-shadow:var(--c360-shadow-card);
      padding:18px;
      margin-bottom:18px;
    }

    .section::before{
      content:"";
      position:absolute;
      left:0;
      right:0;
      top:0;
      height:4px;
      background:linear-gradient(90deg, var(--c360-blue), var(--c360-cyan), var(--c360-green));
    }

    .sec-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      padding:14px 14px 12px;
      border-radius:20px;
      background:
        radial-gradient(320px 110px at 0% 0%, rgba(0,212,255,.13), transparent 64%),
        linear-gradient(180deg, #ffffff, #f8fbff);
      border:1px solid rgba(35,120,255,.14);
      margin-bottom:16px;
    }

    .sec-head h3{
      margin:0;
      color:#061326;
      font-size:17px;
      font-weight:950;
      letter-spacing:-.35px;
      display:flex;
      align-items:center;
      gap:10px;
    }

    .sec-head h3 i{
      color:#0879b8;
    }

    .sec-head small{
      color:#075985;
      background:rgba(0,212,255,.10);
      border:1px solid rgba(0,212,255,.18);
      padding:7px 11px;
      border-radius:999px;
      font-size:12px;
      font-weight:950;
    }

    .form-label{
      color:#061326;
      font-size:15px;
      font-weight:950;
      margin-bottom:8px;
    }

    .req{
      color:#ef4444;
      font-weight:950;
    }

    .input-wrap{
      position:relative;
    }

    .input-ic{
      position:absolute;
      left:12px;
      top:50%;
      transform:translateY(-50%);
      width:44px;
      height:44px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:14px;
      background:#eef7ff;
      border:1px solid rgba(35,120,255,.16);
      color:#0879b8;
      font-size:16px;
      pointer-events:none;
      z-index:5;
      box-shadow:0 8px 18px rgba(3,18,38,.06);
      transition:all .18s ease;
    }

    .input-wrap:focus-within .input-ic{
      background:rgba(0,212,255,.14);
      border-color:rgba(0,212,255,.42);
      color:#061326;
      box-shadow:0 0 0 4px rgba(0,212,255,.12), 0 10px 24px rgba(3,18,38,.10);
    }

    .form-control,
    .form-select{
      min-height:58px;
      border-radius:18px;
      border:2px solid rgba(15,23,42,.12);
      background:#fff;
      color:#061326;
      padding-left:68px;
      padding-right:14px;
      font-size:16px;
      font-weight:800;
      letter-spacing:.1px;
      transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .form-control::placeholder{
      color:rgba(100,116,139,.85);
      font-weight:700;
    }

    .form-control:focus,
    .form-select:focus{
      border-color:rgba(0,212,255,.52);
      box-shadow:0 0 0 .24rem rgba(0,212,255,.14);
      transform:translateY(-1px);
    }

    .help{
      margin-top:7px;
      color:#64748b;
      font-size:13px;
      font-weight:750;
      line-height:1.35;
    }

    .pw-wrap .form-control{
      padding-right:78px;
    }

    .pw-eye{
      position:absolute;
      right:10px;
      top:50%;
      transform:translateY(-50%);
      width:48px;
      height:48px;
      border-radius:15px;
      border:1px solid rgba(35,120,255,.16);
      color:#075985;
      background:rgba(0,212,255,.08);
      display:flex;
      align-items:center;
      justify-content:center;
      z-index:7;
      cursor:pointer;
      transition:all .18s ease;
    }

    .pw-eye:hover,
    .pw-eye:focus{
      background:rgba(0,212,255,.16);
      border-color:rgba(0,212,255,.36);
      outline:none;
    }

    .privacy{
      display:flex;
      align-items:flex-start;
      gap:13px;
      padding:16px;
      border-radius:22px;
      background:
        radial-gradient(320px 110px at 0% 0%, rgba(0,212,255,.11), transparent 62%),
        linear-gradient(180deg, #fff, #f8fbff);
      border:1px dashed rgba(0,212,255,.32);
    }

    .privacy .form-check-input{
      width:26px;
      height:26px;
      margin-top:4px;
      cursor:pointer;
      flex:0 0 auto;
    }

    .privacy label{
      color:#061326;
      font-size:15px;
      font-weight:850;
      line-height:1.4;
      margin:0;
    }

    .privacy a{
      color:#0879b8;
      font-weight:950;
      text-decoration:underline;
    }

    .politica{
      margin:8px 0 0;
      color:#475569;
      font-size:12px;
      line-height:1.45;
      font-weight:700;
    }

    .actions{
      padding:4px 0 0;
    }

    .btn-row{
      display:flex;
      gap:12px;
      align-items:stretch;
      flex-wrap:wrap;
    }

    .btn-create,
    .btn-clear{
      min-height:60px;
      border-radius:18px;
      font-weight:950;
      font-size:16px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      transition:all .18s ease;
    }

    .btn-create{
      flex:1 1 280px;
      border:0;
      color:#061326;
      background:linear-gradient(135deg, var(--c360-cyan), var(--c360-green));
      box-shadow:0 16px 38px rgba(0,212,255,.24);
    }

    .btn-create:hover{
      color:#061326;
      transform:translateY(-2px);
      filter:brightness(1.04);
      box-shadow:0 22px 52px rgba(48,230,177,.28);
    }

    .btn-clear{
      flex:0 0 180px;
      color:#061326;
      background:#fff;
      border:2px solid rgba(15,23,42,.12);
    }

    .btn-clear:hover{
      background:#f8fbff;
      border-color:rgba(0,212,255,.32);
      transform:translateY(-1px);
    }

    .modal-360 .modal-content{
      border:none;
      border-radius:26px;
      box-shadow:0 30px 90px rgba(0,0,0,.32);
      overflow:hidden;
    }

    .modal-360 .modal-header{
      border:none;
      color:#fff;
      background:
        radial-gradient(360px 120px at 0% 0%, rgba(0,212,255,.28), transparent 64%),
        linear-gradient(135deg, #061326, #0b2342, #0879b8);
    }

    .modal-logo{
      width:54px;
      height:54px;
      border-radius:18px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
    }

    .modal-logo img{
      width:44px;
      max-height:44px;
      object-fit:contain;
    }

    .modal-360 .modal-body{
      background:
        radial-gradient(360px 130px at 0% 0%, rgba(35,120,255,.08), transparent 62%),
        linear-gradient(180deg, #ffffff, #f8fbff);
    }

    .modal-form-card{
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      border-radius:20px;
      padding:16px;
      box-shadow:0 14px 30px rgba(3,18,38,.08);
    }

    .btn-login-360{
      min-height:56px;
      width:100%;
      border-radius:16px;
      border:0;
      color:#061326;
      font-weight:950;
      background:linear-gradient(135deg, var(--c360-cyan), var(--c360-green));
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      box-shadow:0 14px 30px rgba(0,212,255,.22);
    }

    @media (max-width:992px){
      .hero-content{
        grid-template-columns:auto 1fr;
      }

      .login-cta{
        grid-column:1 / -1;
        width:100%;
        min-width:0;
      }

      .steps{
        grid-template-columns:1fr;
      }
    }

    @media (max-width:768px){
      .registro-page{
        padding:16px 0 40px;
      }

      .registro-container{
        width:min(100% - 18px, 1120px);
      }

      .registro-card{
        border-radius:26px;
      }

      .registro-hero{
        padding:18px;
      }

      .hero-content{
        grid-template-columns:1fr;
      }

      .hero-logo{
        width:64px;
        height:64px;
        border-radius:20px;
      }

      .hero-logo img{
        width:56px;
        max-height:56px;
      }

      .hero-title{
        font-size:28px;
      }

      #formvotantes{
        padding:14px;
      }

      .section{
        border-radius:24px;
        padding:14px;
      }

      .sec-head{
        align-items:flex-start;
        flex-direction:column;
      }

      .btn-row{
        flex-direction:column;
      }

      .btn-create,
      .btn-clear{
        width:100%;
        flex:auto;
      }
    }

    @media (max-width:420px){
      .form-control,
      .form-select{
        min-height:58px;
        font-size:15px;
        padding-left:64px;
      }

      .input-ic{
        width:42px;
        height:42px;
      }

      .privacy{
        padding:14px;
      }
    }