/* style.css */
body {
  font-family: Arial, sans-serif;
  margin: 20px;
  max-width: 600px;
  line-height: 1.5;
}

h1 {
  margin-bottom: 1em;
}

form > div {
  margin-bottom: 1em;
}

label {
  display: inline-block;
  width: 80px;
}

input[type="email"],
input[type="password"] {
  width: 200px;
  padding: 4px;
}

button {
  padding: 8px 16px;
  cursor: pointer;
}

p {
  margin-top: 1em;
}

.guete_text {
  max-width: 500px; /* Sets the maximum width */
  margin: 20px auto; /* Centers the block on the page and adds some vertical space */
  text-align: center; /* Centers the text inside the block */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; /* Modern font stack */
  font-weight: 300; /* Lighter font weight for a modern look */
  line-height: 1.6; /* Improves readability */
  color: #333; /* A softer black for the text */
}
