:root {
	--20-rem-w: 20rem;
}

.rem-w {
	width: 30rem;
}

.min-height {
	min-height: 100vh;
}


.required::after {
	content: " *";
	font-weight: 400;
	color: red;
}

@media (max-width: 768px) {
    /* Estilos para pantallas pequeñas, como móviles */
    .rem-w {
        width: 100%;
    }
    .min-height {
        min-height: 90vh;
    }
}
