@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: "Nunito", sans-serif;
  background-color: #0D1117;
  overflow: hidden;
    scrollbar-color: #D4AF37 #1a1a1a;
  scrollbar-width: thin;
}

/* Barra de rolagem estilizada com gradiente dourado */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a; /* Fundo escuro da trilha (pode trocar) */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #d1b87c, #D4AF37);
  border-radius: 10px;
  border: 2px solid #1a1a1a; /* Pequeno contorno pra destacar */
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #e0c98a, #ffd700);
}

.bg-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, #4200ff33 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, #ff005533 0%, transparent 60%);
  animation: float 8s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes float {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.05) translateY(-10px); }
}

.login-container {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #fff;
}

.logo {
  width: 120px;
  margin-bottom: 1.5rem;
  animation: pop 0.6s ease-out;
}

@keyframes pop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.input-box {
  position: relative;
  margin-bottom: 1rem;
}

.input-box i.fa-user,
.input-box i.fa-lock {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #d1b87c;
}

#recuperaForm .input-box i.fa {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #d1b87c;
}

.input-box input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 2.5rem;
  border-radius: 8px;
  border: none;
  background-color: #050608;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.input-box .toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
}

.btn-entrar {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(90deg, #d1b87c, #D4AF37);
  border: none;
  border-radius: 10px;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
  margin-top: 1rem;
}

.btn-entrar:hover {
  transform: scale(1.03);
}

.links {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.links a {
  color: #D4AF37;
  text-decoration: none;
}

.erro {
  color: #bb0202;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
