
body {
  font-family: Arial, sans-serif;
  background-color: #0d0d0d;
  color: #eee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 16px;
}

.container {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
  width: 100%;
  max-width: 550px;
  text-align: center;
  margin-bottom: 40px;
  box-sizing: border-box; /* importante */
}

h2 {
  margin-bottom: 12px;
}

p {
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: #ccc;
}

/* INPUT E BOTÃO ALINHADOS */
input[type="email"],
input[type="password"],
button {
  width: 100%;
  padding: 12px;
  margin: 10px 0; /* mesma margem para ambos */
  border-radius: 5px;
  border: none;
  font-size: 1em;
  box-sizing: border-box;
  display: block;
}

/* botão */
button {
  background-color: #4dabf7;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #82cfff;
}

a {
  display: block;
  margin-top: 15px;
  font-size: 0.9em;
  color: #4dabf7;
  text-decoration: none;
}

a:hover {
  color: #82cfff;
}


/* Logo */
.crypto-adz-login img {
    width: 150px;
    margin-bottom: 10px;
}


/* RESPONSIVIDADE */
@media (max-width: 780px) {
  .container {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  input[type="email"],
  input[type="password"],
  button {
    font-size: 0.95em;
    padding: 10px;
  }

  footer {
    font-size: 12px;
  }
}
