.hy-element {
  box-sizing: border-box;
  position: relative;
  display: flex;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  outline: 1px dashed rgba(255, 255, 255, 0);
  transition: outline 0.2s;
}
.hy-element:hover {
  outline: 1px dashed rgba(255, 183, 77, 0.3);
}

.hy-button {
  background-color: #5a6e8c;
  border: 2px solid #2b3542;
  border-bottom-width: 4px;
  color: #e1e1e1;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-shadow: 1px 1px 0 #000;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  transition:
    transform 0.1s,
    border-bottom-width 0.1s,
    box-shadow 0.1s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hy-button:active {
  transform: translateY(2px);
  border-bottom-width: 2px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  filter: brightness(0.9);
}

.hy-input {
  background: #0f1115;
  border: 2px solid #3c4b5e;
  color: #ccc;
  padding: 5px 12px;
  font-size: 14px;
  border-radius: 2px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}
.hy-input:focus {
  border-color: #eca024;
  color: #fff;
  outline: none;
}

.hy-label {
  align-items: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}