ul.social-login {
    list-style: none;
    padding: 0;
}

ul.social-login > li {
    display: inline-block;
    text-align: center;
}

ul.social-login > li > a {
    color: #fff;
    display: block;
    padding: 0;
    margin: 0;
    height: 50px;
    line-height: 50px;
    width: 100%;
    font-size: 20px;
    position: relative;
}
ul.social-login > li > a:hover{
    color: #eee;
}
ul.social-login > li > a:hover:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #00000040;
}
.facebook-bg {
	background: #3b5a9a !important;
}

.linkedin-bg {
	background: #0073b2 !important;
}

.google-bg {
	background: #dd4b39 !important;
}

.twitter-bg {
	background: #1aa9e1 !important;
}

.instagram-bg {
	background: #f09433 !important;
	background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
	background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
	background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 ) !important;
}


h2.divider-title {
    display: inline-block;
    background: #f9fcfe;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0 10px;
    z-index: 1;
    height: 42px;
}

hr.divider {
    margin: 0;
    padding: 0;
    margin-top: -20px;
    margin-bottom: 20px;
    padding-bottom: 21px;
    background: unset;
    border-top: 1px solid;
}


main.main {
    padding: 50px 0;
    background: linear-gradient(to bottom, white , #f4f9fd);
}

label.form-label {
    margin: 0;
    color: #000000ad;
    font-weight: bold;
}
input.form-control {
    border: 1px solid #000000ad;
    border-radius: 0;
}
textarea.form-control{
	border: 1px solid #000000ad;
    border-radius: 0;
}
.form-group {
    margin-bottom: 10px;
}
.switch {
	position: relative;
	display: inline-block;
	height: 18px;
	padding-left: 30px;
	line-height: 18px;
}
.switch input[type=checkbox] {
	opacity: 0;
	width: 0 !important;
	height: 0 !important;
	padding: 0 !important;
}
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
	width: 33px;
}
.slider:before {
	position: absolute;
	content: "";
	height: 12px;
	width: 12px;
	left: 5px;
	bottom: 3px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}
input:checked + .slider {
	background-color: #2196F3;
}
input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
	-webkit-transform: translateX(12px);
	-ms-transform: translateX(12px);
	transform: translateX(12px);
}
.slider.round {
	border-radius: 45px;
}
.slider.round:before {
	border-radius: 50%;
}


input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ffffff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  place-content: center;
  outline:none;
  display: inline-flex;
  margin-right: 5px;
}

input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #212529;
  background-color: CanvasText;
  align-content: center;
  margin: 1px;
}

input[type=checkbox]:checked::before {
  transform: scale(1);
}

input[type=checkbox]:disabled {
  --form-control-color: #000;
  color: #000;
  cursor: not-allowed;
}
@media (max-width:576px){
	main.main{
		padding: 50px 20px;
	}
}
