html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* wrap the input so we can position the toggle */
.password-toggle-wrapper {
    position: relative;
}

    .password-toggle-wrapper input[type="password"],
    .password-toggle-wrapper input[type="text"] {
        padding-right: 2.5rem; /* leave room for the button */
    }

.password-toggle-btn {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    color: #6c757d;
}

    .password-toggle-btn:focus {
        outline: none;
        box-shadow: none;
    }
