body {
  background-color: rgb(41, 133, 117);
  background: -webkit-linear-gradient(to left, rgb(41, 133, 117), rgb(11, 69, 60));
  background: linear-gradient(to left, rgb(41, 133, 117), rgb(11, 69, 60));
  background-attachment: fixed;
}

h2 {
  color: rgb(41, 133, 117);
}

.login {
  padding: 20px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.568);
}

.logo {
  width: 220px;
  /* border-radius: 50%; */
}

input.caja {
  box-shadow: none;
  transition: 0.5s;
}

input.caja:focus {
  box-shadow: 0 0 5px rgb(41, 133, 117);
  border: 1px rgb(41, 133, 117) solid;
}

.btn {
  border: 2px rgb(41, 133, 117) solid;
  background-color: rgb(41, 133, 117);
  color: white;
  font-weight: 700 !important;
}

.btn:hover {
  border: 2px rgb(41, 133, 117) solid;
  color: rgb(41, 133, 117);
  background-color: white;
  font-weight: 700 !important;
  transition: 0.5s;
}