body, .layout-main {
    background-image: url("https://res.cloudinary.com/dxhmsil3t/image/upload/v1758037911/Fundo_Sona_f4lk0w.jpg");
    background-size: 100% auto;     /* sempre 100% da largura */
    background-repeat: no-repeat;   /* não repete */
    background-position: top center;/* fixa no topo centralizado */
    background-attachment: fixed;   /* fundo fica fixo mesmo com scroll */
    min-height: 100vh;  
}

.container {
    width: 27rem;
}

.page {
    height: 95vh;
}

.form-autentic {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background-color: rgb(209, 210, 212);
	border-radius: 15px;
}

.error-block {
	padding: 10px;
	color: #fa0505;
	font-weight: bold;
	text-align: center;
}

.vertical-centro {
	position: relative;
	transform: translateY(50%);
}