/* General reset and body styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url('../imag/adelphos.jpg');
  background-size: contain;
  /* Scales image to fit inside the screen */
  background-repeat: no-repeat;
  /* Prevents image tiling */
  background-position: center;

  font-family: 'Arial', sans-serif;
  background-color: #e6f4ea;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 60px;
  width: 500px;
  text-align: center;
}

h1 {
  color: #4CAF50;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}

h2 {
  color: #666;
  font-size: 16px;
  margin-bottom: 20px;
}

#login-form {
  display: flex;
  flex-direction: column;
}

input {
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

input:focus {
  outline: none;
  border-color: #4CAF50;
}

button {
  padding: 12px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45a049;
}

#error-message {
  color: red;
  font-size: 14px;
  margin-top: 10px;
}

.footer {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #666;
}

.footer p {
  margin: 0;
}

@media (max-width: 480px) {
  .container {
    width: 90%;
    padding: 20px;
  }

  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 14px;
  }
}