/* ZipLand — CSS da Página de Login */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; min-height: 100vh; background: #0a0a0f; color: #f0f0f8; }

.login-bg {
  position: fixed; inset: 0; overflow: hidden; z-index: 0;
}
.login-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.15;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb1 { width: 600px; height: 600px; background: #7c4fff; top: -200px; left: -200px; animation-delay: 0s; }
.orb2 { width: 500px; height: 500px; background: #4f7cff; bottom: -150px; right: -100px; animation-delay: 3s; }
.orb3 { width: 400px; height: 400px; background: #ff4da3; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1.5s; }

@keyframes orbFloat { 0%,100%{transform:scale(1) translateY(0)} 50%{transform:scale(1.1) translateY(-20px)} }

.login-wrap {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.login-card {
  background: rgba(18,18,26,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  width: 100%; max-width: 420px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.login-logo {
  text-align: center; margin-bottom: 32px;
}
.login-logo-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg,#7c4fff,#4f7cff);
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 12px;
}
.login-logo h1 { font-size: 28px; font-weight: 800; }
.login-badge {
  display: inline-block;
  background: linear-gradient(135deg,#7c4fff,#4f7cff);
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 12px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 6px;
}

.login-form { display: flex; flex-direction: column; gap: 16px; }
.campo-grupo { display: flex; flex-direction: column; gap: 6px; }
.campo-grupo label {
  font-size: 12px; font-weight: 600; color: #9999bb;
  text-transform: uppercase; letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 6px;
}
.campo-grupo input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #f0f0f8;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px; font-family: inherit;
  transition: all .2s;
  width: 100%;
}
.campo-grupo input:focus {
  outline: none;
  border-color: #7c4fff;
  box-shadow: 0 0 0 3px rgba(124,79,255,0.2);
}
.campo-senha { position: relative; }
.campo-senha input { padding-right: 44px; }
.btn-ver-senha {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: transparent; border: none; color: #5a5a7a;
  padding: 4px; cursor: pointer; transition: color .2s;
}
.btn-ver-senha:hover { color: #7c4fff; }

.btn-login {
  background: linear-gradient(135deg,#7c4fff,#4f7cff);
  color: #fff; border: none; border-radius: 10px;
  padding: 14px; font-size: 15px; font-weight: 700;
  font-family: inherit; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .2s;
  margin-top: 4px;
}
.btn-login:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,79,255,0.4); }

.login-rodape { margin-top: 24px; text-align: center; font-size: 13px; color: #5a5a7a; }
.login-rodape a { color: #7c4fff; }
.login-rodape a:hover { color: #4f7cff; }

.alerta {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; border-radius: 10px;
  font-size: 13px; margin-bottom: 16px;
}
.alerta-erro   { background: rgba(255,69,69,0.12); border: 1px solid rgba(255,69,69,0.3); color: #ff4545; }
.alerta-aviso  { background: rgba(255,214,10,0.12);border: 1px solid rgba(255,214,10,0.3);color: #ffd60a; }
