.areacliente {
    background-color: #77ab33;
    padding: 6px 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    color: #fafafa;
}
.areacliente.diminuir-fonte {
    font-size: 12px;
}
.areacliente:hover {
    background-color: #4e7c14;
}
a.areacliente {
    color: #fafafa;
}
.centralizar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.centralizar form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin: 0 auto;
}
.form-group {
    margin-bottom: 15px;
}
.login-btn {
    width: 23%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #006d91;
    height: 40px;
    border-radius: 35px;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 auto;
    padding: 0 10px; /* Ajuste o padding conforme necessário */
    box-sizing: border-box; /* Inclui padding e border no cálculo do tamanho */
    white-space: nowrap; /* Evita que o texto quebre em várias linhas */
}

/* Para telas menores que 768px */
@media (max-width: 768px) {
    .login-btn {
        width: 50%;
        font-size: 14px;
        height: 35px; /* Ajuste a altura do botão */
        padding: 0 8px; /* Ajuste o padding conforme necessário */
    }
}

/* Para telas menores que 480px */
@media (max-width: 480px) {
    .login-btn {
        width: 70%;
        font-size: 12px;
        height: 30px; /* Ajuste a altura do botão */
        padding: 0 5px; /* Ajuste o padding conforme necessário */
    }
}

.login-btn:hover {
    background-color: #003c50;
}

.input-login {
    width: 100%;
    border-radius: 30px;
    border: none;
    border-bottom: 1px solid #003c50;
}
input#login {
    background-image: url(../img/usuario.png);
    background-repeat: no-repeat;
    overflow: hidden;
    height: 36px;
    text-align: left;
    padding-left: 35px;
    font-size: small;
    max-width: 250px;
    margin: 0 auto;
}
input#senha {
    background-image: url(../img/senha.png);
    background-repeat: no-repeat;
    overflow: hidden;
    height: 36px;
    text-align: left;
    padding-left: 35px;
    font-size: small;
    max-width: 250px;
    margin: 0 auto;
}
input:hover#submit {
    background-color: #003c50;
    font-weight: bold;
    border: solid 1px #003c50;
    max-width: 250px;
    align-items: center;
}
input#submit {
    background-color: #006d91;
    font-weight: bold;
    border: solid 1px #006d91;
    max-width: 250px;
    align-items: center;
}
.form-signin
{
    max-width: 250px;
    padding: 15px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .top-text {
        font-size: 12px;
    }

    .areacliente {
        font-size: 10px;
        padding: 4px 8px;
    }
}