body {
    height: 100vh;
    display: flex;
}

.right-content {
    background-image: url('../img/bg.jpg');
    background-size: cover;
    height: 100%;
    width: 60%;
}

.topo {
    background-color: #31463b;
    padding: 10px;
}

.topo>.logo {
    width: 100px;
}

.left-content {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #efeee6;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: center;
    padding: 1rem;
}

.input {
    margin-bottom: 20px;
    border: 2.3px solid #31463b;
    /* max-width: 400px; */
    border-radius: 5px;
    padding: 7px;
    display: flex;
}

.input>.form-control {
    background-color: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 1px;
    margin: 0 10px;
}

.input>.form-control:focus {
    border-bottom: 1px solid;
}

.btn-login {
    background-color: #31463b;
    color: #fff;
    max-width: 400px;
}

.btn-login {
    border: 2.3px solid #31463b !important;
}

.links-modal-perfil {
    display: flex;
    flex-direction: column;
    height: 200px;
    justify-content: space-evenly;
}

@media (max-width: 768px) {
    .right-content {
        display: none;
    }

    .left-content {
        width: 100%;
    }

    .topo {
        text-align: center;
    }
}