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;
}

/* Adicione ao seu arquivo site.css */

.bg-pink {
    background-color: #e83e8c;
}

.bg-gold {
    background-color: #be9e30
}

.card {
    border-radius: 1rem;
    overflow: hidden;
}

.card-header {
    font-weight: bold;
}

.form-control:focus {
    border-color: #be9e30;
    box-shadow: 0 0 0 0.25rem rgba(232, 62, 140, 0.25);
}

.btn-primary {
    background-color: #be9e30;
    border-color: #be9e30;
}

    .btn-primary:hover {
        background-color: #be9e30;
        border-color: #be9e30;
    }

.btn-outline-primary {
    color: #be9e30;
    border-color: #be9e30;
}

    .btn-outline-primary:hover {
        background-color: #be9e30;
        border-color: #be9e30;
    }