/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  text-align: center;
  width: 500px;
  height: auto;
}

.logo img {
  width: 200px;
  margin-bottom: 10px;
}

.login-form input {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 220px;
  border: solid 3px #e5c900;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
}

.login-form button {
  background-color: #f4d806;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-form button:hover {
  background-color: #e5c900;
}
