label {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

input[type="text"], input[type="password"], input[type="email"] {
  display: block;
  padding: 10px;
  border: 1px solid;
  border-radius: 5px;
  font-size: 16px;
  font-family: var(--font-stack);
  width: 100%;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus{
  outline: 3px solid var(--highlight);
  outline-offset: 0;
  box-shadow: inset 0 0 0 2px;
}

input[type="email"][readonly] {
  background-color: var(--background-secondary);
  color: var(--text-secondary);

  &:focus {
    outline: none;
    box-shadow: none;
  }
}

input[type="file"] {
  border: 1px solid lightgrey;
  border-radius: 10px;
  padding: 10px;
  background-color: white;

  &:hover {
    cursor: pointer;
    outline: 2px solid var(--highlight);
    border-color: var(--bg-color);
  }
}

input::file-selector-button {
  background-color: #eee;
  color: #0088ff;
  padding: 5px 15px;
  border: none;
  border-radius: 15px;

  &:hover {
    cursor: pointer;
  }
}

