html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* Brand colors */
:root {
  --brand-green: #3e603b;
  --brand-green-light: #5c8359;
  --brand-green-dark: #2d4629;
}

.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 var(--brand-green);
}

.btn-primary {
  background-color: var(--brand-green);
  border-color: var(--brand-green);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
}

.btn-success {
  background-color: var(--brand-green);
  border-color: var(--brand-green);
}

.btn-success:hover, .btn-success:focus, .btn-success:active {
  background-color: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
}

.card-header.bg-success {
  background-color: var(--brand-green) !important;
}

.text-success,
.card-header .text-success {
  color: var(--brand-green) !important;
}

.bg-success {
  background-color: var(--brand-green) !important;
}

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;
}

header:focus {
  outline: none;
}

header {
  outline: none;
}

h1:focus {
  outline: none;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
  color: #fff;
}

.whatsapp-float i {
  margin: 0;
  line-height: 60px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
    font-size: 26px;
  }

  .whatsapp-float i {
    line-height: 50px;
  }
}

/* Made with love footer credit */
.made-with-love {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.7rem;
  color: #ccc;
  background-color: #fafafa;
}

.made-with-love a {
  color: #bbb;
  text-decoration: none;
}

.made-with-love a:hover {
  color: #999;
  text-decoration: underline;
}

