box shadow

by Amy L

HTML

<div class="page">
	<div class="form-group">
		<div class="form-label">
			Label here
		</div>
		<div class="form-control" tabindex="0">
		Form control
		</div>
	</div>
</div>

CSS

.page {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	overflow-y: auto;
	width: 100%;
	background: #ded;
	padding: 16px;
}
.form-group {
	background: #9f9;
	display: flex;
	flex-flow: column nowrap;
	gap: 8px;
	box-sizing: border-box;
}
.form-label {
	color: #666;
	padding: 0 8px;
}
.form-control {
	border: 1px solid #fff;
	box-sizing: border-box;
	background: white;
	padding: 16px;
	border-radius: 10px;
}
.form-control:focus {
	box-shadow: 0 0 0 4px rgba(0 0 80 / 50%);
}