/* Estilo geral para o corpo */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Estilo do contêiner do formulário */
form {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
}

/* Título */
h1 {
  text-align: center;
  color: #009879;
  font-size: 1.5em;
}

/* Estilização geral dos campos de formulário */
input[type="text"], input[type="number"], input[type="email"], input[type="password"], select, textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 8px 0;
  border: 1px solid #dddddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1em;
  background-color: #f3f3f3;
}

/* Foco nos campos de entrada */
input:focus, select:focus, textarea:focus {
  border-color: #009879;
  outline: none;
  background-color: #fff;
}

/* Botão de submit */
button {
  background-color: #009879;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  width: 100%;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

/* Efeito de hover no botão */
button:hover {
  background-color: #007a63;
}

/* Link para voltar */
a {
  display: inline-block;
  margin-top: 15px;
  text-align: center;
  color: #009879;
  text-decoration: none;
  font-weight: bold;
}

/* Hover no link */
a:hover {
  color: #007a63;
  text-decoration: underline;
}

/* Para melhorar a responsividade */
@media (max-width: 600px) {
  form {
    width: 100%;
    padding: 15px;
  }
}


/* Estilo para o link parecer um botão */
        .button-link {
            background-color: #009879;
            color: white;
            padding: 12px 20px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            border-radius: 4px;
            font-size: 1em;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .button-link:hover {
            background-color: #007a63;
        }

        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: Arial, sans-serif;
        }


body {
            font-family: 'Arial', sans-serif;
            background-color: #f9f9f9;
            margin: 0;
            padding: 0;
        }

        /* Estilo da barra de navegação */
        .navbar {
            background-color: #009879;
            padding: 10px;
            color: white;
            text-align: center;
        }

        .navbar a {
            color: white;
            text-decoration: none;
            font-size: 1.2em;
        }
/* Estilo do botão de envio e do botão "Voltar" */
.button {
    background-color: #009879;
    color: white;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.button:hover {
    background-color: #007a63;
}





