body {
  font-family: sans-serif;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.convite-box {
  background: white;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 400px; /* Adicionado para melhor controle */
}

.convite-box img {
    width: 100px;
    margin-bottom: 1em;
}

.convite-box input {
  padding: 0.8em; /* Ajuste para melhor aparência */
  width: 100%;
  margin-top: 1em;
  font-size: 16px;
  box-sizing: border-box; /* Garante que o padding não quebre o layout */
}

.convite-box button {
  margin-top: 1em;
  padding: 0.8em 2em; /* Ajuste para melhor aparência */
  font-size: 16px;
  background: #082a56;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.convite-box button:hover {
  background: #22354f;
}

/* Classe para mensagens de feedback */
.feedback {
    margin-top: 1em;
    font-size: 15px;
    font-weight: bold;
}
.feedback.error {
    color: red;
}
.feedback.success {
    color: green;
}