input, select, textarea, .field {
	width: 100%;
	border: 1px solid #dee2e6;
    padding: 1rem;
	font-size: 1rem;
    border-radius: 0.5rem;
    background-color: #f2f4f6;
	outline: none;
	margin-bottom: 1rem;
}

input, textarea {
    cursor: text;
}

select {
    cursor: pointer;
}

.field {
    cursor: not-allowed;
}

input:active, select:active, textarea:active {
    background-color: #e9ecef;
	outline:none;
}

input:focus, select:focus, textarea:focus {
    background-color: #e9ecef;
	outline:none;
}

textarea {
	resize: none;
}

.btn {
	width: fit-content;
    width: -moz-fit-content;
	position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
	border-radius: 0.5rem;
	z-index: 1;
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
	outline:none;
	cursor: pointer;
	margin-left: auto;
}

@media (hover: hover) {
	
	input:hover, select:hover, textarea:hover {
		background-color: #e9ecef;
		outline:none;
	}
	
	.btn:active {
		z-index: 1;
		color: #fff;
		background-color: #005ec3;
		border-color: #005ec3;
		outline:none;
	}
	
	.btn:hover {
		z-index: 1;
		color: #fff;
		background-color: #499cf5;
		border-color: #499cf5;
		outline:none;
	}
	
}

@media (hover: none) {
	
	.btn:active {
		z-index: 1;
		color: #fff;
		background-color: #499cf5;
		border-color: #499cf5;
		outline:none;
	}
	
}
