/* General browser styles */

* {
	box-sizing: border-box;
}

/* General layout styles */

.general__form {
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-shrink: 1;
}

.form__autocompleteTextarea {
	width: 100% !important;
}

@media (min-width: 450px) {
	div.ui-slider-inneroffset, input.ui-input-text, div.ui-select {
		width: 70% !important;
	}
}

@media (min-width: 620px) {
	.general__form {
		width: 600px;
	}
	.form__button {
		width: 400px;
		align-self: center;
	}
}

.centrado { /* needs to be DEPRECATED */
	text-align: center;
}

/* Specific layout styles */

.login__content {
	display: flex;
	justify-content: center;
}
.login__form {
	width: 400px;
}

.user__content{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.user__content--autosize-normal>*, .user__content--autosize-small>* {
	width: 100%;
}

@media (min-width: 620px) {
	.user__content--autosize-normal>* {
		width: 600px;
	}
	.user__content--autosize-small>* {
		width: 300px;
	}
}
