﻿html {
  font-size: 16px;
}

*:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
}
a:focus-visible, a:focus {
  outline: none;
  box-shadow: none;
}

img {
  max-width: 100%;
}

body {
  font-size: 1rem;
  font-family: "SF Pro Display";
}

#login {
  min-height: 100vh;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 16px;
  border: 0;
  background: none;
  width: 24px;
  height: 24px;
  padding: 0;
  margin-top: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.password-toggle svg {
  width: 16px;
  height: 16px;
}
.password-toggle:hover {
  color: var(--primary-color);
  opacity: 1;
}
