* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url('/assets/img/background.jpg');
  background-size: cover;      /* Ajusta para cobrir toda a tela */
  background-repeat: no-repeat; /* Não repete a imagem */
  background-position: center;  /* Centraliza */
  background-attachment: fixed;
}

.login > div {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.login > div > div {
  background: white;
  padding: 30px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
}

h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #424242;
}

label {
  display: block;
  text-align: left;
  font-size: 14px;
  margin-bottom: 5px;
  color: #4a90e2;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  -webkit-appearance: none; /* Remove estilos padrão do Safari */
  -moz-appearance: none; /* Remove estilos padrão do Firefox */
  appearance: none;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #4a90e2;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
}

button:hover {
  background-color: #357ABD;
}

.forgot {
  display: block;
  margin-top: 25px;
  font-size: 14px;
  color: #4a90e2;
  text-decoration: none;
}

.forgot:hover {
  text-decoration: underline;
}