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;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    background: linear-gradient( 180deg, #6E8F4B 0%, #4F6F2D 50%, #34491C 100% );
    color: white;
    border: 2px solid #86A95B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.20), 0 6px 18px rgba(79,111,45,.45);
    transition: all .3s ease;
    position: fixed;
}

    .whatsapp-float::before {
        content: "";
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 1px solid rgba(212,166,58,.35);
        pointer-events: none;
    }

    .whatsapp-float:hover {
        color: white;
        background: linear-gradient( 180deg, #86A95B 0%, #5E8137 50%, #3F5722 100% );
        transform: scale(1.08);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 8px 22px rgba(79,111,45,.60);
    }

    .whatsapp-float i {
        color: white;
    }