/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #f0f8ff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header, footer {
  background-color: #ffcb05; /* Amarelo Pikachu */
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2a75bb; /* Azul Pokémon */
}

/* Menu */
.menu {
  display: flex;
  gap: 15px;
}

.nav-btn {
  text-decoration: none;
  background-color: #2a75bb;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.nav-btn:hover {
  background-color: #1c4c82;
}

/* Conteúdo principal */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Login box */
.login-container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 400px;
}

.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2a75bb;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.buttons button {
  flex: 1;
  margin: 0 5px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  transition: 0.3s;
}

.btn-login {
  background-color: #2a75bb;
}

.btn-login:hover {
  background-color: #1c4c82;
}

.btn-cadastro {
  background-color: #d62828;
}

.btn-cadastro:hover {
  background-color: #a61d1d;
}

/* Footer */
footer {
  text-align: center;
  color: #2a75bb;
  font-size: 0.9rem;
}

/* Home Container */
.home-container {
  text-align: center;
}

.home-container h1 {
  font-size: 2rem;
  color: #2a75bb;
  margin-bottom: 10px;
}

.home-container p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Pokébola em CSS */
.pokeball {
  width: 120px;
  height: 120px;
  background: white;
  border: 8px solid black;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.pokeball::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background: red;
  top: 0;
  left: 0;
}

.pokeball::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: white;
  border: 6px solid black;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Responsividade */
@media (max-width: 500px) {
  .buttons {
    flex-direction: column;
  }
  .buttons button {
    margin: 5px 0;
  }
  .menu {
    flex-direction: column;
    gap: 8px;
  }
}
