* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
}

h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 38px;
  color: #FFFFFF;
  text-align: center;
  margin-top: 126px;
  margin-bottom: 26px;
}

img {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
}

.input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

input {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  height: 74px;
  width: 342px;
  padding-left: 20px;
  font-weight: 500;
  font-size: 40px;
  line-height: 47px;
  color: #FFFFFF;
  opacity: 0.7;
}

.input-min {
  margin-right: 0; /* Agora controlado por gap */
}

button {
  background: #AEC346;
  box-shadow: 0px 18px 40px rgba(174, 195, 70, 0.35);
  border-radius: 10px;
  width: 342px;
  height: 72px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 36px;
  margin-top: 80px;
  border: none;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

button:active {
  opacity: 0.8;
}

footer {
  color: #f1f1f1;
  padding: 50px;
  text-align: center;
}
