.login-form {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd; /* Adiciona uma borda */
}

.container-fluid {
    /* background-color: #f8f9fa; */
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.login-form p {
    margin-top: 10px;
    margin-bottom: 20px;
}

.cadastre-se {
    text-decoration: none;
}

.cadastre-se:hover {
    text-decoration: underline;
}

.d-flex.justify-content-between.align-items-center {
    margin-top: 20px;
}

.outer-box {
    border: 1px solid #ddd; /* Adiciona uma borda */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Adiciona uma sombra */
    border-radius: 8px; /* Adiciona bordas arredondadas */
    background-color: #fff;
    width: 75% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
}

.input-validate {
    padding: 0.375rem 0;
}

.d-flex.justify-content-center.align-items-center span.mx-2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 769px) {
    .outer-box {
        width: 100% !important;
    }
}