.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column; /* Para garantir que o conteúdo ocupe toda a altura disponível */
    align-items: center;
    padding-bottom: 120px;
    background-color: rgba(0, 74, 89, 1);
}

.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
}

.form-signin .checkbox {
    font-weight: 400;
}

.form-signin .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
}

.form-signin .form-control:focus {
    z-index: 2;
}

.form-signin input[type="text"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* Rodapé fixo */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 74, 89, 1);
    padding: 10px 0;
    font-size: 14px;
    color: #6c757d;
}

.hidden-error {
    visibility: hidden; /* Oculta a mensagem mas mantém o espaço */
}

.h6 {
    min-height: 50px; /* Define uma altura mínima, ajustável conforme o seu conteúdo */
}

.form-control:focus {
    box-shadow: 0 0 0 0.05rem rgba(0, 74, 89, 1); /* Sombra preta com transparência */
    border-color: rgba(0, 74, 89, 0); /* Altera a cor da borda para preto */
  }