@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: "Poppins", sans-serif;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  display: flex;
  align-items: flex-start; /* centraliza verticalmente */
  justify-content: space-between;
  width: 90%;
  max-width: 1000px;
  gap: 40px;
}

/* Título */
h1 {
  flex: 1;
  font-size: 50px;
  color: #07C378;
  margin: 0;
}

/* Formulário */
form {
  flex: 1;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

/* Inputs e Botão */
input[type="text"],
input[type="password"],
button {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border-radius: 6px;
  font-size: 16px;
  border: 1px solid #ccc;
}

/* Botão */
button {
  border: none;
  border-radius: 8px;
  background-color: #07c378;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #05a96a;
}

/* Links */
.links {
  display: flex;
  gap: 30px;
  margin-top: 8px;
}

a {
  color: #07c378;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
  main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  h1 {
    margin-bottom: 20px;
  }

  form {
    width: 100%;
    max-width: 400px;
  }
}