* {
  margin: 0;
  padding: 0;
}

body {
  background: black;
}

h1 {
  color: cyan;
  margin: 10px;
  transition: 2s;
}

.painel {
  background: black;
  border: 2px solid cyan;
  height: 290px;
  width: 300px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  transition: 3s;
}

input {
  background: black;
  border-radius: 10px;
  border: 1px solid cyan;
  margin: 5px;
  height: 20%;
  width: 210px;
  color: cyan;
  transition: 1.75s;
}

input:focus {
  outline: none;
  box-shadow: 0 0 20px rgb(0 255 255);
  transform: scale(1.05);
}

input::placeholder {
  color: white;
}

button {
  height: 20%;
  width: 210px;
  background: cyan;
  border-radius: 10px;
  transition: 2s;
  margin: 5px;
}

button:hover {
  box-shadow: 0 0 20px rgb(0 255 255);
  transform: scale(1.025);
}

h1:hover {
  transform: scale(1.1)
  translateY(-5px);
  text-shadow: 0 0 20px cyan;
}

a {
  margin: 0px 0px 15px 0px;
  color: cyan;
  text-decoration: none;
}

#cadastro {
  background: black;
  border: 2px solid cyan;
  color: white;
  margin: 0px 0px 15px;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

p {
  color: white;
}

.painel:hover {
  transform: scale(1.1)
  translateY(25%);
  
  box-shadow: 0 0 20px rgb(0 255 255);
}
