.auth-page{
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px 64px;
    background:
      radial-gradient(circle at top, rgba(30, 58, 138, 0.08), transparent 35%),
      linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  }

  .auth-shell{
    width: 100%;
    max-width: 1080px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.10);
  }

  .auth-info{
    background:
      linear-gradient(135deg, rgba(19, 43, 116, 0.95), rgba(30, 58, 138, 0.92)),
      url("{% static 'img/Alto-del-carmen.jpg' %}");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 680px;
  }

  .auth-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: .2px;
  }

  .auth-info h1{
    font-size: 2.2rem;
    line-height: 1.15;
    margin: 22px 0 16px;
    font-weight: 800;
  }

  .auth-info p{
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    max-width: 460px;
    margin: 0;
  }

  .auth-beneficios{
    display: grid;
    gap: 14px;
    margin-top: 34px;
  }

  .auth-beneficio{
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(3px);
  }

  .auth-beneficio-icon{
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .auth-beneficio strong{
    display: block;
    font-size: .98rem;
    margin-bottom: 3px;
  }

  .auth-beneficio span{
    font-size: .92rem;
    color: rgba(255,255,255,0.88);
  }

  .auth-form-wrap{
    padding: 44px 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
  }

  .auth-card{
    width: 100%;
    max-width: 430px;
  }

  .auth-head{
    text-align: center;
    margin-bottom: 28px;
  }

  .auth-head h2{
    font-size: 2rem;
    color: #163b8c;
    margin: 0 0 8px;
    font-weight: 800;
  }

  .auth-head p{
    margin: 0;
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .auth-alert{
    margin-bottom: 18px;
    padding: 13px 14px;
    border-radius: 14px;
    font-size: .95rem;
    line-height: 1.5;
    border: 1px solid;
  }

  .auth-alert.error{
    background: #fff1f2;
    color: #b42318;
    border-color: #fecdd3;
  }

  .auth-alert.success{
    background: #ecfdf3;
    color: #027a48;
    border-color: #a6f4c5;
  }

  .auth-group{
    margin-bottom: 16px;
  }

  .auth-label{
    display: block;
    margin-bottom: 7px;
    font-size: .92rem;
    font-weight: 700;
    color: #334155;
  }

  .auth-input input{
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    background: #f8fafc;
    font-size: 0.98rem;
    color: #0f172a;
    transition: .2s ease;
    box-sizing: border-box;
  }

  .auth-input input:focus{
    outline: none;
    border-color: #1d4ed8;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
  }

  .auth-input input::placeholder{
    color: #94a3b8;
  }

  .auth-errors{
    list-style: none;
    margin: 7px 0 0;
    padding: 0;
  }

  .auth-errors li{
    color: #b42318;
    font-size: .88rem;
    line-height: 1.4;
  }

  .auth-captcha{
    margin: 18px 0 20px;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #dbe3ef;
    border-radius: 16px;
    overflow-x: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 108px;
  }

  .auth-btn{
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .2px;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  }

  .auth-btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.22);
  }

  .auth-btn:active{
    transform: translateY(0);
  }

  .auth-footer{
    margin-top: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: .95rem;
  }

  .auth-footer-line{
    display: block;
    width: 100%;
  }

  .auth-footer a{
    color: #1d4ed8;
    font-weight: 800;
    text-decoration: none;
  }

  .auth-footer a:hover{
    text-decoration: underline;
  }

  .auth-footer-forgot{
    margin-top: 2px;
  }

  .auth-footer-forgot a{
    color: #475569;
    font-weight: 700;
  }

  .auth-footer-forgot a:hover{
    color: #1d4ed8;
  }


  .auth-footer-secondary{
    font-size: .92rem;
  }

  .auth-footer-secondary a{
    color: #475569;
    font-weight: 600;
  }

  .auth-footer-secondary a:hover{
    color: #1d4ed8;
  }

  .auth-footer a{
    color: #1d4ed8;
    font-weight: 700;
    text-decoration: none;
  }

  .auth-footer a:hover{
    text-decoration: underline;
  }

  .auth-captcha > div{
    margin: 0 auto;
  }

  @media (max-width: 920px){
    .auth-shell{
      grid-template-columns: 1fr;
      max-width: 560px;
    }

    .auth-info{
      min-height: auto;
      padding: 34px 28px;
    }

    .auth-form-wrap{
      padding: 34px 24px 36px;
    }
  }

  @media (max-width: 520px){
    .auth-page{
      padding: 26px 12px 40px;
    }

    .auth-info{
      padding: 26px 20px;
    }

    .auth-info h1{
      font-size: 1.75rem;
    }

    .auth-form-wrap{
      padding: 28px 18px 30px;
    }

    .auth-head h2{
      font-size: 1.7rem;
    }

    .auth-input input{
      height: 50px;
      border-radius: 12px;
    }

    .auth-btn{
      height: 52px;
      border-radius: 12px;
    }
  }

  .registro-page{
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px 64px;
    background:
      radial-gradient(circle at top, rgba(30, 58, 138, 0.08), transparent 35%),
      linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  }

  .registro-shell{
    width: 100%;
    max-width: 1080px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.10);
  }

  .registro-info{
    background:
      linear-gradient(135deg, rgba(19, 43, 116, 0.95), rgba(30, 58, 138, 0.92)),
      url("/static/img/Alto-del-carmen.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 680px;
  }

  .registro-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: .2px;
  }

  .registro-info h1{
    font-size: 2.2rem;
    line-height: 1.15;
    margin: 22px 0 16px;
    font-weight: 800;
  }

  .registro-info p{
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    max-width: 460px;
    margin: 0;
  }

  .registro-beneficios{
    display: grid;
    gap: 14px;
    margin-top: 34px;
  }

  .registro-beneficio{
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(3px);
  }

  .registro-beneficio-icon{
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .registro-beneficio strong{
    display: block;
    font-size: .98rem;
    margin-bottom: 3px;
  }

  .registro-beneficio span{
    font-size: .92rem;
    color: rgba(255,255,255,0.88);
  }

  .registro-form-wrap{
    padding: 44px 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
  }

  .registro-card{
    width: 100%;
    max-width: 430px;
  }

  .registro-head{
    text-align: center;
    margin-bottom: 28px;
  }

  .registro-head h2{
    font-size: 2rem;
    color: #163b8c;
    margin: 0 0 8px;
    font-weight: 800;
  }

  .registro-head p{
    margin: 0;
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .registro-alert{
    margin-bottom: 18px;
    padding: 13px 14px;
    border-radius: 14px;
    font-size: .95rem;
    line-height: 1.5;
    border: 1px solid;
  }

  .registro-alert.error{
    background: #fff1f2;
    color: #b42318;
    border-color: #fecdd3;
  }

  .registro-alert.success{
    background: #ecfdf3;
    color: #027a48;
    border-color: #a6f4c5;
  }

  .registro-group{
    margin-bottom: 16px;
  }

  .registro-label{
    display: block;
    margin-bottom: 7px;
    font-size: .92rem;
    font-weight: 700;
    color: #334155;
  }

  .registro-input input{
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    background: #f8fafc;
    font-size: 0.98rem;
    color: #0f172a;
    transition: .2s ease;
    box-sizing: border-box;
  }

  .registro-input input:focus{
    outline: none;
    border-color: #1d4ed8;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
  }

  .registro-input input::placeholder{
    color: #94a3b8;
  }

  .registro-errors{
    list-style: none;
    margin: 7px 0 0;
    padding: 0;
  }

  .registro-errors li{
    color: #b42318;
    font-size: .88rem;
    line-height: 1.4;
  }

  .registro-captcha{
    margin: 18px 0 20px;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid #dbe3ef;
    border-radius: 16px;
    overflow-x: auto;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .registro-captcha > div{
    margin: 0 auto;
  }

  .registro-btn{
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .2px;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  }

  .registro-btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.22);
  }

  .registro-btn:active{
    transform: translateY(0);
  }

  .registro-footer{
    margin-top: 18px;
    text-align: center;
    color: #64748b;
    font-size: .95rem;
  }

  .registro-footer a{
    color: #1d4ed8;
    font-weight: 700;
    text-decoration: none;
  }

  .registro-footer a:hover{
    text-decoration: underline;
  }

  @media (max-width: 920px){
    .registro-shell{
      grid-template-columns: 1fr;
      max-width: 560px;
    }

    .registro-info{
      min-height: auto;
      padding: 34px 28px;
    }

    .registro-form-wrap{
      padding: 34px 24px 36px;
    }
  }

  @media (max-width: 520px){
    .registro-page{
      padding: 26px 12px 40px;
    }

    .registro-info{
      padding: 26px 20px;
    }

    .registro-info h1{
      font-size: 1.75rem;
    }

    .registro-form-wrap{
      padding: 28px 18px 30px;
    }

    .registro-head h2{
      font-size: 1.7rem;
    }

    .registro-input input{
      height: 50px;
      border-radius: 12px;
    }

    .registro-btn{
      height: 52px;
      border-radius: 12px;
    }
  }

  .auth-page{
    min-height: calc(100vh - 120px);
    padding: 48px 16px;
    background: linear-gradient(180deg, #f4f7fc 0%, #eef3f9 100%);
  }

  .auth-shell{
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
    border: 1px solid #dfe8f3;
    background: #ffffff;
  }

  .auth-side{
    background: linear-gradient(180deg, #274190 0%, #314d9f 100%);
    color: #fff;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .auth-badge{
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
  }

  .auth-side h1{
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 900;
    margin: 0 0 18px;
    color: #fff;
    letter-spacing: -0.02em;
  }

  .auth-side p{
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.93);
    margin: 0 0 28px;
    max-width: 520px;
  }

  .auth-side-list{
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .auth-side-item{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 18px 18px;
  }

  .auth-side-icon{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .auth-side-item strong{
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
  }

  .auth-side-item span{
    display: block;
    color: rgba(255,255,255,0.88);
    line-height: 1.55;
  }

  .auth-form-wrap{
    background: #fff;
    padding: 44px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .auth-card{
    width: 100%;
    max-width: 430px;
  }

  .auth-head{
    text-align: center;
    margin-bottom: 26px;
  }

  .auth-head h2{
    margin: 0 0 10px;
    font-size: 2.2rem;
    line-height: 1.15;
    color: #1d4aa8;
    font-weight: 900;
    letter-spacing: -0.02em;
  }

  .auth-head p{
    margin: 0;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.65;
  }

  .auth-group{
    margin-bottom: 18px;
  }

  .auth-label{
    display: block;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 15px;
  }

  .auth-input input{
    width: 100%;
    height: 54px;
    border-radius: 16px;
    border: 1px solid #d5dfec;
    background: #f7faff;
    padding: 0 16px;
    font-size: 15px;
    color: #0f172a;
    transition: .2s ease;
    box-sizing: border-box;
  }

  .auth-input input:focus{
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
  }

  .auth-captcha{
    margin: 10px 0 20px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid #dbe4f0;
    background: #f8fbff;
    overflow-x: auto;
  }

  .auth-btn{
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(90deg, #274190 0%, #2563eb 100%);
    color: white;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.20);
    transition: .2s ease;
  }

  .auth-btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.24);
  }

  .auth-footer{
    margin-top: 18px;
    text-align: center;
    color: #64748b;
    font-size: .95rem;
  }

  .auth-footer a{
    color: #1d4ed8;
    font-weight: 800;
    text-decoration: none;
  }

  .auth-footer a:hover{
    text-decoration: underline;
  }

  .auth-errors{
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
  }

  @media (max-width: 900px){
    .auth-shell{
      grid-template-columns: 1fr;
    }

    .auth-side{
      padding: 34px 24px;
    }

    .auth-side h1{
      font-size: 2.3rem;
    }

    .auth-form-wrap{
      padding: 34px 22px;
    }
  }

  .auth-page{
    min-height: calc(100vh - 120px);
    padding: 48px 16px;
    background: linear-gradient(180deg, #f4f7fc 0%, #eef3f9 100%);
  }

  .auth-shell{
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
    border: 1px solid #dfe8f3;
    background: #ffffff;
  }

  .auth-side{
    background: linear-gradient(180deg, #274190 0%, #314d9f 100%);
    color: #fff;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .auth-badge{
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
  }

  .auth-side h1{
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 900;
    margin: 0 0 18px;
    color: #fff;
    letter-spacing: -0.02em;
  }

  .auth-side p{
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.93);
    margin: 0 0 28px;
    max-width: 520px;
  }

  .auth-side-list{
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .auth-side-item{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 18px 18px;
  }

  .auth-side-icon{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .auth-side-item strong{
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
  }

  .auth-side-item span{
    display: block;
    color: rgba(255,255,255,0.88);
    line-height: 1.55;
  }

  .auth-form-wrap{
    background: #fff;
    padding: 44px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .auth-card{
    width: 100%;
    max-width: 430px;
  }

  .auth-head{
    text-align: center;
    margin-bottom: 26px;
  }

  .auth-head h2{
    margin: 0 0 10px;
    font-size: 2.2rem;
    line-height: 1.15;
    color: #1d4aa8;
    font-weight: 900;
    letter-spacing: -0.02em;
  }

  .auth-head p{
    margin: 0;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.65;
  }

  .auth-group{
    margin-bottom: 18px;
  }

  .auth-label{
    display: block;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 15px;
  }

  .auth-input input{
    width: 100%;
    height: 54px;
    border-radius: 16px;
    border: 1px solid #d5dfec;
    background: #f7faff;
    padding: 0 16px;
    font-size: 15px;
    color: #0f172a;
    transition: .2s ease;
    box-sizing: border-box;
  }

  .auth-input input:focus{
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
  }

  .auth-btn{
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(90deg, #274190 0%, #2563eb 100%);
    color: white;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.20);
    transition: .2s ease;
  }

  .auth-btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.24);
  }

  .auth-errors{
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
  }

  @media (max-width: 900px){
    .auth-shell{
      grid-template-columns: 1fr;
    }

    .auth-side{
      padding: 34px 24px;
    }

    .auth-side h1{
      font-size: 2.3rem;
    }

    .auth-form-wrap{
      padding: 34px 22px;
    }
  }

  .auth-page{
    min-height: calc(100vh - 120px);
    padding: 48px 16px;
    background: linear-gradient(180deg, #f4f7fc 0%, #eef3f9 100%);
  }

  .auth-shell{
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
    border: 1px solid #dfe8f3;
    background: #ffffff;
  }

  .auth-side{
    background: linear-gradient(180deg, #274190 0%, #314d9f 100%);
    color: #fff;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .auth-badge{
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
  }

  .auth-side h1{
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 900;
    margin: 0 0 18px;
    color: #fff;
    letter-spacing: -0.02em;
  }

  .auth-side p{
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.93);
    margin: 0 0 28px;
    max-width: 520px;
  }

  .auth-side-list{
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .auth-side-item{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 18px 18px;
  }

  .auth-side-icon{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .auth-side-item strong{
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
  }

  .auth-side-item span{
    display: block;
    color: rgba(255,255,255,0.88);
    line-height: 1.55;
  }

  .auth-form-wrap{
    background: #fff;
    padding: 44px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .auth-card{
    width: 100%;
    max-width: 430px;
  }

  .auth-head{
    text-align: center;
    margin-bottom: 26px;
  }

  .auth-head h2{
    margin: 0 0 10px;
    font-size: 2.2rem;
    line-height: 1.15;
    color: #1d4aa8;
    font-weight: 900;
    letter-spacing: -0.02em;
  }

  .auth-head p{
    margin: 0;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.65;
  }

  .auth-code-box{
    background: #f8fbff;
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    padding: 14px 16px;
    text-align: center;
    margin-bottom: 18px;
    color: #475569;
    line-height: 1.6;
    font-size: 15px;
  }

  .auth-code-box strong{
    color: #1e293b;
  }

  .auth-group{
    margin-bottom: 18px;
  }

  .auth-label{
    display: block;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 15px;
  }

  .auth-input input{
    width: 100%;
    height: 56px;
    border-radius: 16px;
    border: 1px solid #d5dfec;
    background: #f7faff;
    padding: 0 16px;
    font-size: 22px;
    letter-spacing: 8px;
    text-align: center;
    color: #0f172a;
    transition: .2s ease;
    box-sizing: border-box;
  }

  .auth-input input:focus{
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
  }

  .auth-btn{
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(90deg, #274190 0%, #2563eb 100%);
    color: white;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.20);
    transition: .2s ease;
  }

  .auth-btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.24);
  }

  .auth-footer{
    margin-top: 18px;
    text-align: center;
    color: #64748b;
    font-size: .95rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .auth-footer a{
    color: #1d4ed8;
    font-weight: 800;
    text-decoration: none;
  }

  .auth-footer a:hover{
    text-decoration: underline;
  }

  .auth-errors{
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
  }

  @media (max-width: 900px){
    .auth-shell{
      grid-template-columns: 1fr;
    }

    .auth-side{
      padding: 34px 24px;
    }

    .auth-side h1{
      font-size: 2.3rem;
    }

    .auth-form-wrap{
      padding: 34px 22px;
    }
  }

  .verificar-page{
    min-height: calc(100vh - 120px);
    padding: 48px 16px;
    background: linear-gradient(180deg, #f4f7fc 0%, #eef3f9 100%);
  }

  .verificar-wrap{
    max-width: 520px;
    margin: 0 auto;
  }

  .verificar-card{
    background: #fff;
    border: 1px solid #e3ebf5;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    padding: 30px 26px;
  }

  .verificar-card h1{
    margin: 0 0 10px;
    font-size: 2rem;
    color: #0f172a;
    font-weight: 900;
  }

  .verificar-card p{
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .verificar-label{
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
    color: #1e293b;
  }

  .verificar-input{
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #d7e2f0;
    font-size: 20px;
    text-align: center;
    letter-spacing: 6px;
    box-sizing: border-box;
    margin-bottom: 16px;
  }

  .verificar-input:focus{
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
  }

  .verificar-btn{
    width: 100%;
    min-height: 50px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #1f3c88 0%, #2563eb 100%);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
  }

  .verificar-link{
    display: block;
    margin-top: 14px;
    text-align: center;
    text-decoration: none;
    color: #2563eb;
    font-weight: 700;
  }

  .verificar-help{
    margin-top: 12px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
  }