#spothit_widget {
	background-color: rgba(195, 195, 195, 0.2);
	padding: 1em;
	border-radius: 5px;

	&.section-dark {
		background-color: rgb(37, 37, 37);
	}

	#spothit_widget_form {
		label {
			margin: 1em;
			margin-bottom: 0.5em;
			color: rgb(116, 116, 116);
			font-weight: 200;
		}

		input[type="text"],
		input[type="email"] {
			border: none;
			border-radius: 0;
			border-bottom: 1px solid black;
			background-color: transparent;
			color: black;

			&:focus {
				border: solid 1px black;
				border-radius: 10px;
				transition: border 0.1s, border-radius 1.2s;
			}
		}
	}
	.form-submit {
		button {
			background-color: rgb(116, 116, 116);
			color: white;
			&:hover {
				background-color: rgb(145, 145, 145);
			}
			&:active,
			&:focus {
				-webkit-box-shadow: 0px 0px 2px 4px rgba(122, 122, 122, 0.57);
				box-shadow: 0px 0px 2px 4px rgba(122, 122, 122, 0.57);
			}
		}
		&.success {
			button {
				background-color: rgb(14, 159, 67);
				color: white;
			}
		}
	}
}
