/*
Copyright © SFDW INC - Vista Wine & Spirits - 3JMS 2021-2021

Certain code in this system is protected. © 2021 C2823945 - SFDW INC - Vista Wine & Spirits - 3JMS. All rights reserved
and protected. Per United States Of America - California Penal Code 484 PC "every person who shall feloniously steal,
take, carry, lead, or drive away the personal property of another, or who shall fraudulently appropriate property which
has been entrusted to him or her, or who shall knowingly and designedly, by any false or fraudulent representation or
pretense, defraud any other person of money, labor or real or personal property, or who causes or procures others to
report falsely of his or her wealth or mercantile character and by thus imposing upon any person, obtains credit and
thereby fraudulently gets or obtains possession of money, or property or obtains the labor or service of another, is
guilty of theft." License / Rights inquiry must be made to info@vistawinespirits.com. Any use without permission is
prosecuted by DMCA, Computer Fraud and Abuse Act, and the United States Federal Circuit courts
*/
		body,
		html {
			margin: 0;
			padding: 0;
			height: 100%;
			background:url(../../images/login/login_background_image.jpg)  no-repeat center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
 	background-size: cover;
 	position:relative;
		}
		.user_card {
			border-radius: 25px;
			height: auto;
			width: 350px;
			margin-top: auto;
			margin-bottom: auto;
			background: #2b3648;
			position: relative;
			display: flex;
			justify-content: center;
			flex-direction: column;
			padding: 10px;
			box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
			-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
			-moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
			border-radius: 5px;

		}
		.brand_logo_container {
			position: absolute;
			height: 170px;
			width: 170px;
			top: -75px;
			border-radius: 50%;
			background: #60a3bc;
			padding: 10px;
			text-align: center;
		}
		.brand_logo {
			height: 150px;
			width: 150px;
			border-radius: 50%;
			border: 2px solid white;
		}
		.form_container {
			margin-top: 100px;
		}
		.login_btn {
			width: 100%;
			background: #49bac2 !important;
			color: white !important;
		}
		.login_btn:focus {
			box-shadow: none !important;
			outline: 0px !important;
		}
		.login_container {
			padding: 0 2rem;
			margin-top: 60px;
		}
		.input-group-text {
			background: #49bac2 !important;
			color: white !important;
			border: 0 !important;
			border-radius: 0.25rem 0 0 0.25rem !important;
		}
		.input_user,
		.input_pass:focus {
			box-shadow: none !important;
			outline: 0px !important;
		}
		.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
			background-color: #c0392b !important;
		}

		.errornote {
			margin-top: 1rem;
			padding: 13px;
			border-radius: 5px;
			background-color: #cbebf1;
			color: black;
			font-weight: bold;
			max-width: 250px;
		}