/* tweak these if needed */
:root {
  --login-orange: #ff532e;
  /* base */
  --login-orange-hover: #e44a28;
}

.btn-login {
  display: inline-block;
  padding: 10px 14px;
  background: var(--login-orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  /* rounded like the screenshot */
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, transform .05s ease, box-shadow .15s ease;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.btn-login:hover {
  background: var(--login-orange-hover);
}

.btn-login:active {
  transform: translateY(1px);
}

.btn-login:focus-visible {
  outline: 2px solid #111;
  /* accessible focus */
  outline-offset: 2px;
}