/ wwwroot / css / site.css
site.css
 1  html {
 2    font-size: 14px;
 3  }
 4  
 5  @media (min-width: 768px) {
 6    html {
 7      font-size: 16px;
 8    }
 9  }
10  
11  .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
12    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
13  }
14  
15  html {
16    position: relative;
17    min-height: 100%;
18  }
19  
20  body {
21    margin-bottom: 60px;
22  }
23  
24  .form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
25    color: var(--bs-secondary-color);
26    text-align: end;
27  }
28  
29  .form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
30    text-align: start;
31  }