* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

  font-family: 'Nationale Regular';
    /* Define a cor de fundo padrão para navegadores que não suportam gradientes */
    /* Gradiente linear do topo para a base */
    background: #121212;
}

    @font-face {
  font-family: 'Nationale Regular';
  src: url('./fonts/Nationale-Regular.woff2') format('woff2'),
       url('./fonts/Nationale-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Nationale Bold'; /* Corrigido para evitar conflito com a anterior */
  src: url('./fonts/Nationale-Bold.woff2') format('woff2'),
       url('./fonts/Nationale-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

@font-face {
    font-family: 'Nationale Black';
    src: url('./fonts/Nationale-Black.woff2') format('woff2'),
         url('./fonts/Nationale-Black.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}


.container {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.icon-logo {
  width: 30px;
  margin-bottom: 10px;
}

@keyframes fade {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.animate-fade {
  animation: fade 0.3s ease-out;
  transition: opacity 0.3s ease;
}


.text-logo {
  width: 100px;
  margin-bottom: 30px;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.login-box {
  background-color: #1a1a1f;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
}

.login-box label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #ccc;
}

.login-box input {
  width: 100%;
  padding: 10px;
  background-color: #0e0e12;
  border: none;
  border-bottom: 1px solid #444;
  color: white;
  margin-bottom: 20px;
}

.btn-main {
  width: 100%;
  padding: 12px;
  background-color: #666;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.separator {
  text-align: center;
  color: #aaa;
  margin: 20px 0;
}

.btn-ini {
  width: 30%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: rgb(0, 0, 0);
  border-radius: 10px;
  cursor: pointer;
}

.btn-social {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #555;
  background: transparent;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

footer {
  margin-top: 30px;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}

footer a {
  display: block;
  color: #888;
  margin: 3px 0;
  text-decoration: none;
}

.lang-select {
  margin-top: 10px;
  background-color: #1e1e24;
  padding: 6px 12px;
  display: inline-block;
  border-radius: 20px;
  margin-bottom: 10px;
}

footer p {
  margin-top: 10px;
}

/* From Uiverse.io by Wendell47 */ 
a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10rem;
  transition: all 0.2s;
  font-weight: bold;
  cursor: pointer;
  color: rgb(0, 0, 0);
  z-index: 0;
  box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  background: rgb(255, 255, 255); /* fundo visível */
}

a.button:hover {
  background: rgb(177, 177, 177);
  color: rgb(0, 0, 0);
}

.hoverEffect {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0; /* <— z-index menor que o texto */
}

a.button span {
  position: relative;
  z-index: 1; /* garante que o texto fique acima do hoverEffect */
}

