/*
 Theme Name: Blocksy Child
 Theme URI: https://xserver.zerorisk.biz/
 Description: Minimal child theme for Blocksy. Adds a clean login CTA style and room for customizations.
 Author: ZeroRisk
 Author URI: https://zerorisk.biz/
 Template: blocksy
 Version: 1.0.0
 Text Domain: blocksy-child
*/

/* --- Login CTA (Apple-ish) --- */
.zr-login-btn{
  display:inline-block;padding:14px 28px;border-radius:9999px;
  font-weight:700;letter-spacing:.02em;text-decoration:none;
  background:linear-gradient(180deg,#111,#000);color:#fff;
  box-shadow:0 10px 20px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.05);
  transition:transform .15s ease, box-shadow .15s ease;
}
.zr-login-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 26px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
}
.zr-login-btn:active{transform:translateY(0);}
