 :root {
    --orange: #ff6b00;
    --yellow: #f5a623;
  }

  * { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }
 
  body {
    font-family:'Oxanium',sans-serif;
    max-width:700px; margin:0 auto;
    height:100vh; display:flex; flex-direction:column;
  }

  /* ══════════════════════════════════════
     TOPO — lime forte → branco
  ══════════════════════════════════════ */
  .top-zone {
    flex-shrink: 0;
    padding-bottom: 6px;
  }

  /* HEADER */
  .header {
    display:flex; align-items:center; justify-content:center;
    padding:22px 16px 0; position:relative;
  }
 
  .btn-back:active{transform:scale(0.9);}

  .header h1 {
    font-family:'Rajdhani',sans-serif;
    font-size:22px; font-weight:700;
    letter-spacing:3px; text-transform:uppercase;
    color:#fff;
  }

  /* ÁREA DO TÍTULO */
  .title-area {
    padding: 30px 28px 0;
  }
  
  .title-sub {
    font-size:13px; color:#fff;
    letter-spacing:0.3px; line-height:1.5;
  }

  /* ══════════════════════════════════════
     FORMULÁRIO — branco
  ══════════════════════════════════════ */
  .form-zone {
    flex:1;
    overflow-y:auto; overflow-x:hidden;
    -webkit-overflow-scrolling:touch;
    padding:32px 24px 24px;
    display:flex; flex-direction:column;
  }
  .form-zone::-webkit-scrollbar{width:0;}

  /* MENSAGENS DE ERRO/SUCESSO */
  .mensagem {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
  }
  .sucesso {
    background: #2e7d32;
    color: white;
  }
  .erro {
    background: #c62828;
    color: white;
  }

  /* ── CAMPO COM LINHA DIVISÓRIA ── */
  .field {
    display:flex; align-items:center;
    border-bottom:1px solid #ececec;
    gap:14px;
    transition: border-bottom-color 0.2s;
  }
  .field:first-of-type { border-top:1px solid #ececec; }

  .field-icon {
    font-size:20px; flex-shrink:0; width:26px; text-align:center;
  }
  .field input {
   flex:1; background:transparent; border:none; outline:none;
        font-family:'Oxanium',sans-serif; font-size:16px;
        color:#fff;letter-spacing: 5px; padding: 18px 0;
      }
      .field input::placeholder { color:#ccc; font-size:14px; letter-spacing: 2px; }
  .btn-eye {
    background:none; border:none; cursor:pointer;
    font-size:18px; opacity:0.45; padding:4px;
    transition:opacity 0.2s; flex-shrink:0;
  }
  .btn-eye.visible{opacity:0.9;}

  /* Foco activo */
  .field.active { border-bottom-color:var(--orange); }
  .field.error { border-bottom-color:#e53935; }

  /* ── ESQUECI SENHA ── */
  .forgot-row {
    display:flex; justify-content:flex-end;
    margin-top:10px;
  }
  .btn-forgot {
    background:none; border:none; cursor:pointer;
    font-family:'Oxanium',sans-serif;
    font-size:12px; color:var(--orange);
    font-weight:600; letter-spacing:0.3px;
    padding:0; transition:opacity 0.2s;
  }
  .btn-forgot:active { opacity:0.6; }

  /* ── BOTÃO ENTRAR ── */
  .btn-login {
    width:100%; padding:16px;
    background:linear-gradient(135deg,#ff6b00,#f5a623);
    color:#fff; border:none; border-radius:14px;
    font-family:'Rajdhani',sans-serif;
    font-size:18px; font-weight:700; letter-spacing:2px;
    text-transform:uppercase; cursor:pointer;
    box-shadow:0 4px 20px rgba(245,130,0,0.4);
    transition:transform 0.12s; position:relative; overflow:hidden;
  }
  .btn-login:active{transform:scale(0.97);}
  .btn-login::after {
    content:''; position:absolute; top:0; left:10%; right:10%; height:45%;
    background:rgba(255,255,255,0.15); border-radius:14px 14px 0 0;
  }
  .btn-login:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }

  /* ── SEPARADOR "ou" ── */
  .separator {
    display:flex; align-items:center;
    gap:12px; margin:24px 0 20px;
  }
  .sep-line { flex:1; height:1px; background:#ececec; }
  .sep-text { font-size:12px; color:#ccc; letter-spacing:1px; font-weight:600; }

  /* ── LINK CRIAR CONTA (texto clicável) ── */
  .register-link {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #fff;
  }
  .register-link span {
    color: var(--orange);
    font-weight: 600;
    cursor: pointer;
  }

  /* ── LINHA DIVISÓRIA ANTES DOS ÍCONES ── */
  .divider-icons {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    margin: 20px 0;
  }

  

  /* ── TERMOS ── */
  .terms {
    margin-top:0px; text-align:center;
    font-size:11px; color:#ccc; line-height:1.3;
    padding-bottom:12px;
  }
  .terms span { color:#bbb; cursor:pointer; }

  /* ── BADGE DE SEGURANÇA ── */
  .security-badge {
    display:flex; align-items:center; justify-content:center;
    gap:6px; margin-top:18px;
    font-size:11px; color:#bbb; letter-spacing:0.5px;
  }
  .security-badge .dot {
    width:6px; height:6px; border-radius:50%;
    background:#5cb800; flex-shrink:0;
    box-shadow:0 0 6px rgba(92,184,0,0.5);
  }

  @keyframes ripple{to{transform:translate(-50%,-50%) scale(5);opacity:0;}}
  @keyframes pulse{0%,100%{opacity:1;}50%{opacity:0.5;}}