.switch{
	position: relative;
	display: inline-block;
	height:16px;
	width: 40px;
}
.switch input{
	opacity: 0;
	width:0;
	height:0;
}
.slider{
	position: absolute;
	left:0;
	top:0;
	bottom:0;
	right:0;
	background:#ccc;
	transition: .5s ease;
	border-radius: 30px;
}
.slider:before{
	height: 20px;
	top:-2px;
	width: 20px;
	border-radius: 20px;
	background:#2a2a2a;
	border-radius: 20px;
	position: absolute;
	content: "";
	transition: .5s all;
}

.switch input:checked + .slider:before{
	transform: translateX(20px);
	background:#009688 !important;
}
header *,
footer *{
	color: #FFF !important;
}
header,
footer{
	background:#2a2a2a;
}
.img-fluid-logo{
	height: 120px;
}
h2{
	font-size: 28px;
	font-weight: normal;
}
header p{
	font-size-adjust:24px !important;
}
.btn-danger{
	height: 80px;
	width: 250px;
	padding: 0 !important;
	line-height: 80px;
}
.form-control,
.form-select{
	background:#cecdbf;
	box-shadow: 0 0 0 !important;
}
.form-control:focus,
.form-select:focus{
	background:#cecdbf !important;
}
@media (max-width:676px){
	.form-control,
	.form-select{
		height:60px;
	}
	.img-fluid-logo{
		height:80px;
	}
}