body {
  background: #eee;
  opacity: 0;
  transition: all 0.5s ease;
}

.green.button {
  background-color: #54137d !important;
  color: #fff;
  transition: all 0.3s ease;
}

.green.button:hover {
  background-color: white !important;
  color: #54137d;
}

.blue.button {
  background-color: #3eb6b2 !important;
  color: #fff;
  transition: all 0.3s ease;
}

.blue.button:hover {
  background-color: white !important;
  color: #3eb6b2;
}

#nav {
  background: #eee;
  border: none;
  padding: 10px;
  box-shadow: none;
  margin: 0;
  a:hover {
    color: #54137d !important;
  }
}

#poweredBy {
  display: none !important;
}

.ticket-page,
.check-ticket-page,
.new-client-page {
  h1 {
    color: #54137d;
    font-weight: bold;
  }
}

#ticketForm,
.check-ticket-page,
.new-client-page {
  font-family: "Open Sans", sans-serif;
  
  input {
    border: none;
    border-radius: 3px;
    border: 1px solid #ccc;
    padding: 7px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="date"],
  input[type="time"],
  input[type="url"],
  input[type="search"],
  input[type="password"],
  select {
    padding: 7px;
    border-radius: 3px;
    border: 1px solid #ccc;
  }

  .buttons {
    input {
      border: none;
      border-radius: 3px;
      border: 1px solid #ccc;
      padding: 7px;
      font-family: "Open Sans", sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
  }

}


.agent-page{
  #nav{
    border: solid 1px #aaa;
  }
}