/* style.css */
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(120deg, #1e1e1e, #2c3e50);
  font-family: 'Arial', sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  overflow-x: hidden;
}

.container {
  background: #292929;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px #000;
  width: 100%;
  max-width: 350px; /* Ajustado para largura compacta */
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.logo {
  width: 80px;
  margin-bottom: 20px;
}

h1 {
  margin-bottom: 15px;
  font-size: 20px; /* Reduzi o tamanho do título */
}

label {
  display: block;
  text-align: left;
  margin: 8px 0;
  font-size: 14px; /* Ajustei o tamanho do texto */
}

input[type="number"],
input[type="text"] {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  font-size: 16px; /* Ajustei o tamanho da fonte */
}

button {
  background-color: #3498db;
  border: none;
  color: white;
  padding: 12px;
  border-radius: 6px;
  margin: 10px 0;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
  font-size: 16px;
}

button:hover {
  background-color: #2980b9;
}

.nav {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.nav a {
  color: #3498db;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover {
  text-decoration: underline;
}

footer {
  width: 100%;
  text-align: center;
  padding: 15px;
  background-color: #1e1e1e;
  position: fixed;
  bottom: 0;
}

footer p {
  color: #fff;
  font-size: 12px;
  margin: 0;
}

.senha {
  font-weight: bold;
  text-align: center;
  background-color: #1e1e1e;
  color: #00ffcc;
  letter-spacing: 1px;
  animation: piscar 1s infinite;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes piscar {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Ajustes para dispositivos móveis */
@media (max-width: 600px) {
  body {
    padding: 0;
  }

  .container {
    width: 90%; /* Ajustei para 90% da tela */
    padding: 20px;
    box-sizing: border-box;
  }

  h1 {
    font-size: 18px; /* Título menor */
  }

  input[type="number"],
  input[type="text"],
  button {
    font-size: 16px;
    padding: 10px; /* Reduzi o padding para ajustar melhor */
  }

/* Estilizando o logo */
.logo {
  width: 200px; /* Aumenta o tamanho do logo */
  height: auto; /* Mantém a proporção da imagem */
  border-radius: 50%; /* Bordas arredondadas */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra suave para dar destaque */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transição suave para efeitos de hover */
  margin: 20px 0;
}

.logo:hover {
  transform: scale(1.1); /* Aumenta o logo ao passar o mouse */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra mais forte ao passar o mouse */
}
  }

  footer {
    position: relative;
    padding: 10px;
  }
}