/* Fundo */
.custom-login-page {
    background: url('../img/designfundo9.png');
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card-custom {
    width: 500px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.97);
    text-align: center;
    max-width: 100%;

}

/* Logo principal */
.login-logo-top img {
    width: 250px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 0px auto; /* 20px de espaço abaixo do logo */
}

/* Mensagem */
.login-box-msg {
    padding-top: 20px !important;
    padding-bottom: 10px !important;/* espaço acima da frase */
    font-size: 1rem;
    text-align: center;
}



/* Botão */
.login-card-custom .btn-primary {
    background-color: #0e5374;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
}
.login-card-custom .btn-primary:hover {
    background-color: #007aa6;
}

/* Logos parceiros */
.login-logos {
    margin: 1.5rem 0 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.login-logos img {
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}
