
.container-fluid {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.div-login{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
    background-color: var(--bg-color-3);
    border-radius: var(--border-radius-3);
    width: 100%;
    max-width: min(600px, 90%);
    box-shadow: var(--box-shadow);
}

form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media screen and (max-width: 576px) {
    .div-login {
        max-width: 100%;
        padding: 20px;
    }

    div img {
        width: 230px;
    }
}