.button{
  display: inline-block;
  width: 70%;
  color: rgb(255, 255, 255);
  background-color:  #d4377e;
  border-radius: 50px;
  border: 3px solid #1d510d;
  font-size: 20px;
  font-weight: bold;
  margin: 10px auto;
  padding: 12px 0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button:hover{
  transform: scale(1.05);
  box-shadow: 5px 5px 20px #173b0c;
}

.box{
  text-align: center;
  width: 90%;
  padding-bottom: 20px;
  max-width: 550px;
  height: auto;
  margin: 50px auto 100px;;
  margin-top: 5%;
  justify-content: center;
  font-size: 20px;
  align-items: center;
  border: 3px solid #1d510d;
  border-radius: 20px;
  background-color: #f1e7d5;
}

.textbox{
  cursor: text;
  text-align: center;
  outline: none;
  border-radius: 50px;
  width: 90%; 
  max-width: 500px;
  height: 40px;
  margin: 20px;
  border-width: 3px;
}

.textbox:focus{
border-color: #d4377e;
transform: scale(1.03);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body{
  font-family: 'Poppins', sans-serif;
  background-size: cover;
  background-repeat: repeat;
  background-image: url("../Imagens/Painel Ecoline.png");
}

h1{
  font-family: 'Poppins' sans-serif;
  font-size: 35px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 5px black;
}

a{
  color: white;
  font-style: normal;
  font-size: 16px;    
  text-decoration: none;
  font-weight: bold;
  top: 20px;
  text-shadow: 0 0 4px rgb(0, 0, 0);
  transition: transform 0.3s ease, font-size 0.3s ease;
}

a:hover {
  text-shadow: 0 0 8px black;
  transform: scale(1.1); 
  font-size: 18px;   
}

.login-invalido, p{
  color: #1d510d;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-shadow: 0 0 2px rgb(0, 0, 0);
}