body {
  background-color: #EB5E1A;
  background: -webkit-linear-gradient(to left, #EB5E1A, #bc4b14);
  background: linear-gradient(to left, #EB5E1A, #bc4b14);
  background-attachment: fixed;
}

h2 {
  color: #EB5E1A;
}

.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 #EB5E1A;
  border: 1px #EB5E1A solid;
}

.btn {
  border: 2px #EB5E1A solid;
  background-color: #EB5E1A;
  color: white;
  font-weight: 700 !important;
}

.btn:hover {
  border: 2px #EB5E1A solid;
  color: #EB5E1A;
  background-color: white;
  font-weight: 700 !important;
  transition: 0.5s;
}