body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.logo {
  width: 300px;
  height: auto;
  margin-bottom: 10px;
}

.page-title {
  background-color: #003366;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.back-button {
  border-radius: 0px;
  background-color: #003366;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}

.back-button:hover {
  background-color: #00264d;
}

.page-title h1 {
  margin: 0;
  font-size: 2em;
}

.page-title h2 {
  margin: 0;
  font-size: 1.5em;
}

.login-container {
  margin: 0 auto;
  padding: 20px;
  max-width: 400px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
  color: #003366;
  margin-bottom: 20px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 10px;
  color: #333;
}

input[type="email"],
input[type="password"] {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #003366;
}

.forgot-password {
  text-align: right;
  margin-bottom: 10px;
}

.forgot-password a {
  color: #003366;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}

button {
  background-color: #003366;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #00264d;
}

.register-link {
  margin-top: 20px;
  text-align: center;
}

.register-link a {
  color: #003366;
  text-decoration: none;
}

.register-link a:hover {
  text-decoration: underline;
}

/* Estilo do rodapé */
footer {
  background-color: #003366;
  color: #fff;
  padding: 20px 0;
  border-radius: 0px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

footer p {
  margin: 0;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}