html {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 81.25%; /* 1rem = 13px. font-size = 100% (default) = 16px */
}

body {
	margin: 0px;
	padding: 0px;
	background-color: #F4F5F6;
}

.form-control {
	padding: .4rem;
	border: 1px solid #CCC;
	min-width: 15rem;
}

	.form-control:focus {
		border: 1px solid #50B329;
		outline: none;
	}

.rounded {
	border-radius: .4rem;
}

.link {
	text-decoration: none;
	color: black;
	cursor:pointer;
}

	.link:hover {
		text-decoration: underline;
	}

.btn {
	padding: .6rem;
	border-radius: .4rem;
	border: 1px hidden;
	cursor: pointer;
}

	.btn:hover {
		background-color: #CCC;
		color: black;
	}


.fondo_verde {
	background-color: #50B329;
	color: white;
}

.grisTexto {
	color: #808080;
}

.verdeTexto {
	color: #50B329;
}

/* Estilos de Blazor */
.valid.modified:not([type=checkbox]) {
	outline: 1px solid #26b050;
}

.invalid {
	outline: 1px solid red;
}

.validation-message {
	color: red;
}

#blazor-error-ui {
	background: lightyellow;
	bottom: 0;
	box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
	display: none;
	left: 0;
	padding: 0.6rem 1.25rem 0.7rem 1.25rem;
	position: fixed;
	width: 100%;
	z-index: 1000;
}

	#blazor-error-ui .dismiss {
		cursor: pointer;
		position: absolute;
		right: 0.75rem;
		top: 0.5rem;
	}
