body {
  display: flex;
  align-items: center;
  font: 13px/20px "Lucida Grande", Tahoma, Verdana, sans-serif;
  color: #404040;
  background: #0ca3d2;

}

.login {
  position: relative;
  margin: 30px auto;
  padding: 20px 20px 20px;
  width: 350px;
  background: white;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.login:before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  z-index: -1;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

.login h1 {
  margin: -20px -20px 21px;
  line-height: 40px;
  font-size: 15px;
  font-weight: bold;
  color: #555;
  text-align: center;
  text-shadow: 0 1px white;
  background: #f3f3f3;
  border-bottom: 1px solid #cfcfcf;
  border-radius: 3px 3px 0 0;
  background-image: -webkit-linear-gradient(top, whiteffd, #eef2f5);
  background-image: -moz-linear-gradient(top, whiteffd, #eef2f5);
  background-image: -o-linear-gradient(top, whiteffd, #eef2f5);
  background-image: linear-gradient(to bottom, whiteffd, #eef2f5);
  -webkit-box-shadow: 0 1px whitesmoke;
  box-shadow: 0 1px whitesmoke;
}

.login p {
  margin: 20px 0 0;
}

.login p:first-child {
  margin-top: 0;
}

.login input[type=text], .login input[type=password] {
  width: 278px;
}

.login p.remember_me {
  float: left;
  line-height: 31px;
}

.login p.remember_me label {
  font-size: 12px;
  color: #777;
  cursor: pointer;
}

.login p.remember_me input {
  position: relative;
  bottom: 1px;
  margin-right: 4px;
  vertical-align: middle;
}

.login p.submit {
  text-align: right;
}

.login-help {
  margin: 20px 0;
  font-size: 11px;
  color: white;
  text-align: center;
  text-shadow: 0 1px #2a85a1;
}

.login-help a {
  color: #cce7fa;
  text-decoration: none;
}

.login-help a:hover {
  text-decoration: underline;
}

#loginBtn{
  width: 100%;
  text-align: center;
}

#loginInput{
  width: 100%;
}

.loginInput{
  text-align: center;
  padding: 10px;
}

:-moz-placeholder {
  color: #c9c9c9 !important;
  font-size: 13px;
}

::-webkit-input-placeholder {
  color: #ccc;
  font-size: 13px;
}

input {
  font-family: 'Lucida Grande', Tahoma, Verdana, sans-serif;
  font-size: 14px;
}

input[type=text], input[type=password] {
  margin: 5px;
  padding: 0 10px;
  width: 200px;
  height: 34px;
  color: #404040;
  background: white;
  border: 1px solid;
  border-color: #c4c4c4 #d1d1d1 #d4d4d4;
  border-radius: 2px;
  outline: 5px solid #eff4f7;
  -moz-outline-radius: 3px;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
}

input[type=text]:focus, input[type=password]:focus {
  border-color: #7dc9e2;
  outline-color: #dceefc;
  outline-offset: 0;
}

/* input[type=submit] {
  width: 85%;
  height: 29px;
  font-size: 12px;
  font-weight: bold;
  color: #527881;
  text-shadow: 0 1px #e3f1f1;
  background: #cde5ef;
  border: 1px solid;
  border-color: #b4ccce #b3c0c8 #9eb9c2;
  border-radius: 16px;
  outline: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background-image: -webkit-linear-gradient(top, #edf5f8, #cde5ef);
  background-image: -moz-linear-gradient(top, #edf5f8, #cde5ef);
  background-image: -o-linear-gradient(top, #edf5f8, #cde5ef);
  background-image: linear-gradient(to bottom, #edf5f8, #cde5ef);
  -webkit-box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.15);
} */

input[type=submit]:active {
  background: #cde5ef;
  border-color: #9eb9c2 #b3c0c8 #b4ccce;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
}

.lt-ie9 input[type=text], .lt-ie9 input[type=password] {
  line-height: 34px;
}

p.span {
  font-size: 13px;
}

/* New Login Style */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

/* Sets how total width/height of element will be calculated. 
Border-box will including padding in total width calculation */
* {
	box-sizing: border-box;
}

/*Main background color*/
body {
	background: white;
	/*background: #0275D8;*/
	display: flex;
	align-items: center;
	flex-direction: column;
	font-family: 'Playfair Display', serif;
	height: 100vh;
	margin: -20px 0 50px;
}

h1 {
	font-weight: bold;
	margin: 0;
	background-color: rgba(28, 200, 138, 0);
}

h2 {
	text-align: center;
}

p {
	font-size: 14px;
	font-weight: 100;
	line-height: 20px;
	letter-spacing: 0.5px;
	margin: 20px 0 30px;
}

span {
	font-size: 12px;
}

a {
	color: #333;
	font-size: 14px;
	text-decoration: none;
	margin: 15px 0;
}

button, .submitBtn {
	border-radius: 20px;
	border: 1px solid #ade6e6;
	background-color: #ade6e6;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
}

button:active {
	transform: scale(0.95);
}

button:focus {
	outline: none;
}

button.ghost {
	background-color: transparent;
	border-color: #FFFFFF;
}

.login-signUp-form {
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px;
	height: 100%;
	text-align: center;
}

input {
	background-color: #eee;
	border: none;
	padding: 12px 15px;
	margin: 8px 0;
	width: 100%;
}

#container {
	background-color: #fff;
	border-radius: 10px;
  	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 
			0 10px 10px rgba(0,0,0,0.22);
	position: relative;
	overflow: hidden;
	width: 768px;
	max-width: 100%;
	min-height: 480px;
}

.form-container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

.sign-in-container{
	left: 0;
	width: 50%;
	z-index: 2;
}

#container.right-panel-active .sign-in-container {
	transform: translateX(100%);
}

.sign-up-container{
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

#container.right-panel-active .sign-up-container {
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	animation: show 0.6s;
}

@keyframes show {
	0%, 49.99% {
		opacity: 0;
		z-index: 1;
	}
	
	50%, 100% {
		opacity: 1;
		z-index: 5;
	}
}

.overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
	font-family: 'Playfair Display', serif;

}

#container.right-panel-active .overlay-container{
	transform: translateX(-100%);
}
.bgColor {
	background: #0275D8;
	background: linear-gradient(to right, #87CEFA, #72d4d4);
	background: linear-gradient(to right, #87CEFA, #72d4d4);
}
.overlay {
	/*background-color: #00ceff;*/
	background: linear-gradient(to right, #469393, #8dcff8);
	background: linear-gradient(to right, #88c9f3, #6ab6e8);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: #FFFFFF;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
  	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

#container.right-panel-active .overlay {
  	transform: translateX(50%);
}

.overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.overlay-left {
	transform: translateX(-20%);
}

#container.right-panel-active .overlay-left {
	transform: translateX(0);
}

.overlay-right {
	right: 0;
	transform: translateX(0);
}

#container.right-panel-active .overlay-right {
	transform: translateX(20%);
}

.social-container {
	margin: 20px 0;
}

.social-container a {
	border: 1px solid #DDDDDD;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 5px;
	height: 40px;
	width: 40px;
}
.demo-link {
	text-decoration: underline;
}
footer {
    background-color: #222;
    color: #fff;
    font-size: 14px;
    bottom: 0;
    position: fixed;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
}

footer p {
    margin: 10px 0;
}

footer i {
    color: red;
}

footer a {
    color: #3c97bf;
    text-decoration: none;
}

.password {
  width: 100% !important;
}

/* #registration-container{
  display: flex;
} */

/* End new Login Style */

#registration-container{
	min-height: fit-content !important;
}

.registration-form-container{
	display: flex;
}

.registration-form-container input{
	width: 100%;
	margin-bottom: 1rem;
}

.registration-form{
	text-align: center;
}

.register-business-container{
	background: -webkit-linear-gradient(to right, #87CEFA, #72d4d4);
	background: linear-gradient(to right, #87CEFA, #72d4d4);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: #FFFFFF;
}

.registration-container-body{
	margin:1.5rem;
}

.registration-container-body input{
	margin-left: 0;
}

.registration-container-body select{
	height: 34px;
}

.registration-select-container{
	margin-bottom: 1rem;
}

.transitionBtn{
	border-radius: 50%;
	width: 100px;
	height: 100px;
}

input[type=text], input[type=password]{
	outline: none;
	border-radius: 5px;
}

.form-card-container{
	-webkit-box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.form-card-label{
	margin:5px;
}

.error{
	color: red;
}

.logo {
	border-style: groove;
	border-width: thin;
	margin-bottom: 40px;
	font-family: 'Playfair Display', serif;

}

.buttonStyle{
	min-width: 100px;
	min-height: 25px;
}

#sidebarToggle{
	padding:0;
}

.login-alert {
	color: #2c5e5e;
	padding: 0.75rem 1rem;
	margin-bottom: 0.9375rem;
	font-weight: 600;
	font-size: 0.875rem;
	width: 100%;
	border-radius: 0.5rem;
	border: 1px solid transparent;
	box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.05);
	text-align: center;
}

.login-alert-success {
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
	color: #28a745 !important;
	font-size: 1.15rem;
	padding: 0.5rem 0;
}

.login-alert span {
	font-size: inherit;
}

.login-alert i {
	font-size: 0.9em;
}

.login-alert-info {
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
	color: #0ca3d2 !important;
	font-size: 1.15rem;
	padding: 0.5rem 0;
}

/* Fluid scaling for logo, headers, and buttons on login pages */
.logo {
	padding: clamp(0.9375rem, 1.5vw, 1.5625rem);
	font-size: clamp(1.4375rem, 3.5vw, 3.125rem);
	margin-top: clamp(0.625rem, 8vw, 9.375rem);
}

.h2Tag {
	font-size: clamp(1.125rem, 2vw, 1.875rem);
}

.auth-card-final .h2Tag {
    margin-bottom: 2rem;
}

.button {
	font-size: clamp(0.625rem, 1vw, 0.75rem);
}

/* --- Forgot Password Styles --- */
.auth-card-final {
    background-color: #fff;
    border-radius: 0.75rem; /* 12px equivalent */
    box-shadow: 0 0.875rem 1.75rem rgba(0,0,0,0.15), 0 0.625rem 0.625rem rgba(0,0,0,0.1);
    width: 30rem; /* 480px equivalent */
    max-width: 95%;
    padding: 2.5rem 3.125rem 3.5rem; /* Shaved top padding from 4.375rem to 2.5rem */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-box {
    font-size: 3rem; /* 48px equivalent */
    color: #e74a3b;
    margin-bottom: 1.5rem; /* 24px equivalent */
}

#forgotForm, #resetForm {
    width: 100%;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* INPUTS - Sleek 2.8rem (45px) height */
.form-input-custom {
    width: 100% !important;
    height: 2.8rem !important;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0 1rem;
    margin-bottom: 0.9375rem;
    border-radius: 0.375rem; /* 6px equivalent */
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease-in-out;
}
.form-input-custom:focus {
    border-color: #72d4d4;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(114, 212, 212, 0.15);
}

/* BUTTON - Sleek 2.8rem (45px) height */
.btn-submit-custom {
    width: 100%;
    height: 2.8rem;
    background: linear-gradient(to right, #87CEFA, #72d4d4);
    border: none;
    border-radius: 1.4rem; /* 22px equivalent */
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    cursor: pointer;
    margin-top: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.375rem rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-submit-custom:hover {
    transform: translateY(-0.125rem) scale(1.01);
    box-shadow: 0 0.4375rem 0.875rem rgba(114, 212, 212, 0.4);
    filter: brightness(1.05);
}
.btn-submit-custom:active {
    transform: translateY(0.0625rem);
}

.back-nav {
    margin-top: 2.8125rem; /* 45px equivalent */
    text-decoration: none;
    color: #444;
    font-size: 1.125rem; /* 18px equivalent */
    font-weight: 700;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}
.back-nav i {
    margin-right: 0.625rem; /* 10px equivalent */
}
.back-nav:hover {
    color: #72d4d4;
    text-decoration: underline;
}

/* Scoped styling for the footer on login/auth pages only */
.sticky-footer {
	background-color: transparent !important;
}

.sticky-footer .copyright,
.sticky-footer .copyright a {
	font-size: 1.1rem !important; /* Scalable CSS unit to make text bigger on login pages */
	font-weight: 500;
}

