
  /*Trigger Button*/
.login-trigger {
  font-weight: bold;
  color: #0a0a0a;
  background: linear-gradient(to bottom right, #e08e3a, #e08e3a);
  padding: 15px 10px;
  border-radius: 30px;
  position: relative;
  top: 50%;
}

/*Modal*/
h4 {
  font-weight: bold;
  color: #0a0a0a;
}
.close {
  color: #0a0a0a;
  transform: scale(1.2)
}
.modal-content {
  font-weight: bold;
  background: linear-gradient(to bottom right,#e08e3a,#e08e3a);
}
.form-control {
  margin: 1em 0;
}
.form-control:hover, .form-control:focus {
  box-shadow: none;
  border-color: #0a0a0a;
}
.username, .password {
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 2px solid #eee;
  padding-left: 0;
  font-weight: normal;
  background: transparent;
}
.form-control::-webkit-input-placeholder {
  color: #eee;
}
.form-control:focus::-webkit-input-placeholder {
  font-weight: bold;
  color: #0a0a0a;
}
.login {
  padding: 6px 20px;
  border-radius: 20px;
  background: none;
  border: 2px solid ##e08e3a;
  color: ##e08e3a;
  font-weight: bold;
  transition: all .5s;
  margin-top: 1em;
}
.login:hover {
  background: ##e08e3a;
  color: #0a0a0a;
}
