body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f7fa;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/geodesi.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: -1;
}


.login-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.9); 
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  z-index: 1;
}

.logo {
  width: 300px;
  margin-bottom: 20px;
}

h1 {
  margin: 10px 0;
  font-size: 40px;
  color: #1e60a2;
}

.subtitle {
  margin-bottom: 20px;
  font-size: 16px;
  color: #000000;
  max-width: 350px;
}

footer {
  padding: 15px;
  text-align: center;
  font-size: 12px;
  color: #777;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
}

#login-message {
  margin-top: 16px;
  font-size: 14px;
}

#login-message.success {
  font-size: 15px;
  color: #1e7e34;
}

#login-message.error {
  font-size: 15px;
  color: #b02a37;
}
