body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 40px;
}

footer {
  text-align: center;
  font-size: 10px;
  color: #666;
  position: fixed;
  /* lipit de fundul ferestrei */
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  background: #f5f5f5;
  /* opțional, ca să fie vizibil */
}

.container {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
}

.message {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
}

.message.error {
  background-color: #fdd;
  color: #900;
}

.message.success {
  background-color: #dfd;
  color: #090;
}

label {
  display: block;
  margin-top: 10px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input.error {
  border-color: #f00;
  background-color: #fee;
}

button {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}

.text-content {
  margin-bottom: 20px;
}

img {
  display: block;
  margin: 10px auto;
  max-width: 200px;
}

a.button {
  display: block;
  text-align: center;
  padding: 10px;
  background: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 15px;
}

a.button:hover {
  background: #218838;
}