body {
  font-family: "Roboto", sans-serif;
  background-color: #f8f9fa;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb {
  background: lightgray;
  border-radius: 20px;
  box-shadow: 0px 2px 5px 1px #000 inset;
}

.contact-form {
  margin-top: 50px;
}

.contact-form .form-label {
  font-weight: bold;
  min-width: 70px;
}

.contact-form .form-control {
  padding: 10px;
  height: inherit;
  border-radius: 0;
}

.contact-form .form-control:focus {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid lightgray;
}

.contact-form input[type='color'] {
  width: 100px;
  height: 50px;
  padding: 0;
  margin: 0;
}

.contact-form button {
  border-radius: 0;
  font-size: 20px;
  text-transform: uppercase;
}

#responseMsg {
  width: 100%;
  font-size: 16px;
}
.error {
  margin-top: 10px;
  padding: 10px;
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid rgba(185, 74, 72, 0.3);
}
.success {
  margin-top: 10px;
  padding: 10px;
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
}