:root {
  --bg: #0b0b0f;
  --bg-2: #13131a;
  --card: #16161f;
  --linha: #24242f;
  --texto: #f2f2f5;
  --texto-2: #9a9aab;
  --acento: #ff2e63;
  --acento-2: #00e0c6;
  --ok: #35d07f;
  --alerta: #ffb020;
  --raio: 14px;
  --fonte: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--texto);
  font-family: var(--fonte);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font: inherit;
  color: var(--texto);
  background: var(--bg-2);
  border: 1px solid var(--linha);
  border-radius: 10px;
  padding: 11px 13px;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--acento);
}

.btn {
  background: var(--acento);
  color: #fff;
  border-radius: 10px;
  padding: 11px 18px;
  font-weight: 600;
  transition: filter .15s;
}
.btn:hover { filter: brightness(1.1); }
.btn.secundario {
  background: var(--bg-2);
  border: 1px solid var(--linha);
  color: var(--texto);
}

.oculto { display: none !important; }

.aviso {
  background: rgba(255, 46, 99, .12);
  border: 1px solid rgba(255, 46, 99, .35);
  color: #ff8ba7;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
}

.spinner {
  width: 26px; height: 26px;
  border: 3px solid var(--linha);
  border-top-color: var(--acento);
  border-radius: 50%;
  animation: girar .7s linear infinite;
  margin: 60px auto;
}
@keyframes girar { to { transform: rotate(360deg); } }
