/* WEB PANEL PROXY public CSS */
*{box-sizing:border-box}
    body{
      margin:0;min-height:100vh;display:grid;place-items:center;padding:24px;
      color:#111936;font-family:Inter,ui-sans-serif,system-ui,sans-serif;
      background:
        radial-gradient(circle at 12% 12%,#bce7ff,transparent 34%),
        radial-gradient(circle at 88% 92%,#d9c8ff,transparent 36%),
        #f5f7ff;
    }
    .card{
      width:min(780px,100%);
      padding:clamp(32px,7vw,70px);
      text-align:center;
      border:1px solid #fff;
      border-radius:34px;
      background:#fffffff0;
      box-shadow:0 25px 70px #344f8b27;
    }
    .mark{
      width:68px;height:68px;margin:0 auto 22px;display:grid;place-items:center;
      border-radius:22px;background:linear-gradient(135deg,#2868ff,#7b4dff);
      color:#fff;font-size:32px;box-shadow:0 14px 28px #4168ce55;
    }
    h1{margin:0;font-size:clamp(34px,7vw,62px);letter-spacing:-.06em}
    h1 span{color:#2868ff}
    p{max-width:530px;margin:18px auto 0;color:#56637e;font-size:clamp(16px,2.5vw,20px);line-height:1.6}
    .timer{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;max-width:510px;margin:38px auto}
    .unit{padding:17px 8px;border-radius:20px;background:#f6f8ff;border:1px solid #e7ebfa}
    .n{display:block;font-size:clamp(28px,5vw,45px);font-weight:800;line-height:1}
    .l{display:block;margin-top:8px;color:#77829b;font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase}
    .note{
      display:inline-flex;align-items:center;gap:9px;padding:12px 16px;border-radius:99px;
      background:#eef3ff;color:#3c568d;font-size:14px;
    }
    .dot{width:8px;height:8px;border-radius:50%;background:#2ccf91;box-shadow:0 0 0 5px #2ccf9128}

    /* Кнопка "Войти по паролю" */
    .login-toggle{
      margin-top:28px;display:inline-flex;align-items:center;gap:10px;
      padding:13px 22px;border-radius:999px;border:1px solid #dfe5f5;
      background:#fff;color:#3c568d;font-size:15px;font-weight:700;
      cursor:pointer;transition:transform .2s,box-shadow .2s,border-color .2s;
    }
    .login-toggle:hover{
      transform:translateY(-2px);border-color:#2868ff;
      box-shadow:0 12px 24px #4168ce33;
    }
    .login-toggle .lock{font-size:16px}

    /* Раскрывающаяся форма */
    .login-box{
      max-height:0;overflow:hidden;opacity:0;
      transition:max-height .35s ease,opacity .3s ease,margin .3s ease;
      margin-top:0;
    }
    .login-box.open{max-height:400px;opacity:1;margin-top:24px}

    .login-inner{
      max-width:420px;margin:0 auto;padding:26px;
      border-radius:24px;background:#f8faff;border:1px solid #e7ebfa;
    }
    .login-inner h3{margin:0 0 6px;font-size:18px;font-weight:800}
    .login-inner p{margin:0 0 18px;font-size:14px;color:#77829b;max-width:none}

    .field{margin-bottom:12px;text-align:left}
    .field label{
      display:block;margin-bottom:6px;font-size:12px;font-weight:700;
      letter-spacing:.06em;text-transform:uppercase;color:#77829b;
    }
    .field input{
      width:100%;padding:14px 16px;border-radius:14px;border:1px solid #dfe5f5;
      background:#fff;font-size:16px;color:#111936;outline:none;
      transition:border-color .2s,box-shadow .2s;
    }
    .field input:focus{border-color:#2868ff;box-shadow:0 0 0 4px #2868ff1f}

    .btn{
      width:100%;padding:15px 24px;border-radius:999px;border:0;cursor:pointer;
      font-size:16px;font-weight:700;color:#fff;
      background:linear-gradient(135deg,#2868ff,#7b4dff);
      box-shadow:0 12px 26px #4168ce4d;
      transition:transform .2s,opacity .2s;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn:active{transform:translateY(0)}

    .msg{margin-top:12px;font-size:14px;font-weight:600;min-height:18px}
    .msg.err{color:#c62828}
    .msg.ok{color:#16855c}
    .hint{margin-top:14px;font-size:13px;color:#77829b}
    .hint code{background:#e7edff;padding:2px 7px;border-radius:6px;font-weight:700;color:#2868ff}

    /* Внутренний "сайт" после входа */
    .inside{display:none;text-align:left}
    .inside.open{display:block;animation:fade .35s ease}
    @keyframes fade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}

    .inside-header{
      display:flex;justify-content:space-between;align-items:center;
      padding-bottom:20px;margin-bottom:26px;border-bottom:1px solid #e7ebfa;gap:14px;flex-wrap:wrap;
    }
    .inside-title{margin:0;font-size:clamp(22px,4vw,32px);letter-spacing:-.04em;text-align:left}
    .badge{
      display:inline-flex;align-items:center;gap:8px;
      padding:8px 14px;border-radius:99px;background:#e6f9f0;color:#16855c;
      font-size:13px;font-weight:700;
    }
    .badge .dot{background:#16855c;box-shadow:0 0 0 5px #16855c26}
    .logout{
      padding:10px 18px;border-radius:999px;border:1px solid #dfe5f5;
      background:#fff;color:#3c568d;font-size:14px;font-weight:700;cursor:pointer;
      transition:border-color .2s;
    }
    .logout:hover{border-color:#c62828;color:#c62828}

    .inside-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:14px}
    .tile{
      padding:20px;border-radius:20px;background:#f8faff;border:1px solid #e7ebfa;
    }
    .tile b{display:block;font-size:15px;margin-bottom:6px}
    .tile span{font-size:13px;color:#77829b;line-height:1.5}

    @media(max-width:440px){
      .card{padding:35px 18px;border-radius:26px}
      .timer{gap:7px}
      .unit{padding:14px 4px;border-radius:15px}
      .l{font-size:9px}
      .login-inner{padding:20px 16px}
    }

[data-wpp-style="wpp-0"]{display:flex;gap:10px;align-items:center;flex-wrap:wrap}