html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Account Dropdown */
.account-btn {
    background: transparent;
    border: 1px solid rgba(63, 188, 63, 0.5);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.account-btn:hover {
    background: rgba(63, 188, 63, 0.1);
    border-color: #3fbc3f;
}

.account-btn::after {
    display: none;
}

.account-btn img {
    border: 2px solid #3fbc3f;
    image-rendering: pixelated;
    margin-right: 10px;
}

.dropdown-menu {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dropdown-item {
    color: #ccc;
    padding: 10px 20px;
    transition: 0.2s;
}

.dropdown-item:hover {
    background: #3fbc3f;
    color: white;
}

.dropdown-divider {
    border-top-color: #333;
}