* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black-color: #1d1d1b;
  --blue-color: #5893BB;
  --dark-blue-color: #043464;
  --white-color: #fff;
}

body,
input,
button {
  font-family: "Century Gothic Paneuropean", sans-serif;
  font-weight: 400;
  font-smooth: antialiased;
  color: var(--black-color);
}

body {
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
  -moz-print-color-adjust: exact;
  -webkit-text-size-adjust: none;
}

label {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--dark-blue-color);
}

input {
  font-size: 1rem;
  padding-left: 0.5rem;
  border: 0;
  outline: 0;
}

input:disabled {
    background-color: var(--white-color);
}

button {
  border: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
}

::-ms-reveal {
  display: none;
}

.input-eye-wrapper {
  width: 100%;
  height: auto;
  position: relative;
}

.eye {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.eye::before {
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/icons/eye-on.svg") no-repeat center center / contain;
  content: "";
  box-sizing: border-box;
  transition: 0.2s;
}

.eye:checked::before {
  background: url("../img/icons/eye-of.svg") no-repeat center center / contain;
}

.eye:checked {
  background-color: none;
}

input:matches([type="checkbox"], [type="radio"]):checked {
  background: none;
  border-color: none;
}
