html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.form-control:focus, .form-check-input:focus, .form-control:active, .form-check-input:active {
    box-shadow: none !important;
    outline: none !important;
    border-color: var(--blue) !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;
}

.dropdown-menu {
    --bs-dropdown-link-active-bg: #175b6b !important;
}

.dropdown-item:focus, .dropdown-item:active:focus, .dropdown-item:hover {
    background-color: var(--blue);
    color: white;
}

/* ======================================================== */
/* ======================================================== */
/* ==================== PÁGINA INICAL ===================== */
/* ======================================================== */
/* ======================================================== */
/* Variáveis */
:root {
    --blue: #175b6b;
    --grayGradient: linear-gradient(#95b1b0, #585c5c);
    --greenGradient: linear-gradient(#4eb385, #357155);
}

.background-blue {
    background-color: var(--blue) !important;
}

.background-gray {
    background: var(--grayGradient) !important;
}

.background-green {
    background: var(--greenGradient) !important;
}

.gscloud-btn {
    border-radius: 5px !important;
    outline: none !important;
    box-shadow: 0 0 0 0px var(--blue) !important;
    border-color: var(--blue) !important;
    color: white !important;
}

.hover-blue:hover {
    background-color: var(--blue);
    color: white !important;
}

/* Outros Elementos */
.pagina-selecionada {
    background-color: var(--blue) !important;
    color: white !important;
}

.pagina-nao-selecionada {
    background-color: white !important;
    color: var(--blue) !important;
}

#desenvolvidoPorLink {
    color: var(--blue);
    text-decoration: none;
}

.logoCloudAlentejo {
    width: 7vh;
}