* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  margin: 0;
  height: 100vh;
  background: url("assets/background-polresta.jpeg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.logo-left {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 99px;
}
.logo-right {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 99px;
}
.login-box {
  background: rgba(255, 255, 255, 0.9);
  background: rgb(245, 222, 178, 0.9);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 350px;
}
.login-box img {
  width: 100%;
}
.login-box h2 {
  text-align: center;
  margin-bottom: 35px;
  color: #2c170e;;
}
.login-box input { 
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #41312a;
  background-color: wheat;
  color: #41312a;
}
.input-group { 
  position: relative;
}
input:focus {
  outline: none;
  border: 2px solid #41312a;
}
#errorlogin {
    margin: 0 0 20px;
    color: red; 
    text-align: center; 
    font-size: 1em; 
}
.toggle-password {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  font-size: 14px;
}
.login-box button {
  width: 100%;
  padding: 15px;
  background: #41312a;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
}
.footer {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 2px black;
  font-size: 14px;
}