
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');
::-webkit-scrollbar {
	background: transparent;
	width: 5px;
	height: 5px;
  }
  ::-webkit-scrollbar-thumb {
	background-color: rgb(214, 214, 214);
  }
  ::-webkit-scrollbar-thumb:hover {
	background-color: rgba(0, 0, 0, 0.3);
  }
* {
	box-sizing: border-box;
}

body {
	background: #f6f5f7;
	display: flex;
	padding-top: 50px;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-family: 'Montserrat', sans-serif;
	height: 100vh;
	margin: -60px 0 50px;
	/* background-image: linear-gradient(right, 
	rgba(0,0,0,0.75),rgba(0,0,0,0.75)), url('../images/background-login.webp'); */
	/* background-image: linear-gradient(rgba(0,0,0,0.75),rgba
	(0,0,0,0.75),url('../images/background-login.webp')); */
	background-image: url('background-login.webp');
	background-size: cover;
	background-position: center;
}


h1 {
	font-weight: bold;
    margin: 0;
    font-size: 24px;
}

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 {
	border-radius: 25px;
    border: 1px solid #FF4B2B;
    background-color: #FF4B2B;
    color: #FFFFFF;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: bold;
    padding: 15px 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

.toggle {
	border-radius: 25px;
    border: 1px solid #FF4B2B;
    background-color: #FF4B2B;
    color: #FFFFFF;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: bold;
    padding: 15px 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

button:active {
	transform: scale(0.95);
}

button:focus {
	outline: none;
}

a.toggle {
	background-color: transparent;
	border-color: #FFFFFF;
}

form {
	background-color: #FFFFFF;
	display: flex !important;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px !important;
	height: 100%;
	text-align: center;
}

#branch-container #employee_manage_registration {
	background-color: #FFFFFF;
    display: revert !important;
    padding: 0 10px !important;
    height: 100%;
    text-align: center;
}

.form-control{

	height: 50px;
	border: 2px solid #eee;
	border-radius: 6px;
	font-size: 14px;
  }

  .form-control:focus {
color: #495057;
background-color: #fff;
border-color: #039be5;
outline: 0;
box-shadow: none;

}

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;
}
.branch-container {
	background-color: #fff;
	padding: 20px;
	border: 2px solid #FF4B2B;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 22%);
    position: relative;
    overflow: hidden;
    width: 477px;
    max-width: 100%;
    min-height: 150px;
}
.branch-container label {
	font-size: 14px;
	font-weight: 600;
}

.form-select {
	width: 100%;
	margin-top: 10px;
}
.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;
}

.container.right-panel-active .overlay-container{
	transform: translateX(-100%);
}

.overlay {
	background: #005a2d;
	/* background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
	background: linear-gradient(to right, #FF4B2B, #FF416C); */
    /* background: -webkit-linear-gradient(to right, #61fff8, #005a2d);
	background: linear-gradient(to right, #61fff8, #005a2d); */
    /* background: -webkit-linear-gradient(to right, #000201, #09ffe8 );
	background: linear-gradient(to right, #000201, #09ffe8 );  */
	background: linear-gradient(to right, #1dc0c9, #00c9e9 );
    /* background: linear-gradient(to right, #61fff8, #005a2d); */
	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;
}

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;
}

.back-loging {
    font-size: 12px;
    font-weight: 600;
    color: #039be5;
}

.login-back {
	display: flex;
	justify-content: space-between;
}
.login-back a {
	border-radius: 50px;
    border: 1px solid #FF4B2B;
    background-color: #FF4B2B;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: bold;
    padding: 5px 13px;
    letter-spacing: 1px;
    margin-top: 19px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* signup */

.main6{
	height: 500px;
	background: red;
	overflow: hidden;
	background: url("https://doc-08-2c-docs.googleusercontent.com/docs/securesc/68c90smiglihng9534mvqmq1946dmis5/fo0picsp1nhiucmc0l25s29respgpr4j/1631524275000/03522360960922298374/03522360960922298374/1Sx0jhdpEpnNIydS4rnN4kHSJtU1EyWka?e=view&authuser=0&nonce=gcrocepgbb17m&user=03522360960922298374&hash=tfhgbs86ka6divo3llbvp93mg4csvb38") no-repeat center/ cover;
	border-radius: 10px;
	box-shadow: 5px 20px 50px #000;
}
#chk6{
	display: none;
}
.signup{
	position: relative;
	width:100%;
	height: 100%;
}

.main6 .login{
	height: 505px;
    /* background: #FF4B2B !important; */
    border-radius: 60% / 10%;
    transform: translateY(-180px);
    transition: .8s ease-in-out;
}
.main6 .login label{
	color: #573b8a;
	transform: scale(.6);
}
.login form {
	/* background: linear-gradient(to right,#00c9e9, #1dc0c9 ); */
    border-radius: 0px 85px 0px 120px;
    margin-top: 300px;
    /* box-shadow: 0px 0px 2px #000201f0; */
    border: 0px solid #FF4B2B;
    padding: 0px 65px !important;
}
.customer-login {
	background: #FF4B2B;
	padding: 10px;
	font-size: 12px;
	border-radius: 20px;
}
.customer-login1 {
	/* padding: 10px; */
	font-size: 12px;
	border-radius: 20px;
}
.customer-login1 h1 {
	font-size: 16px !important;
}
.customer-login h1 {
	font-size: 12px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
.login h1 {
	color: #FF4B2B;
    margin-bottom: 5px;
    cursor: pointer;
}
.login h1:hover {
	text-shadow: 2px 2px 2px rgb(110 110 110);
	transition: .5s;
}

#chk6:checked ~ .login{
	transform: translateY(-800px);
}
#chk6:checked ~ .login label{
	transform: scale(1);	
}
#chk6:checked ~ .signup label{
	transform: scale(.6);
}

.after-confirmed1 {
	background: #fff;
	box-shadow: 2px 2px 9px 2px rgb(0 0 0 / 20%);
	padding: 2rem;
	border-radius: 5px 5px 5px 5px;
}

.after-confirmed1 .modal-body {
	align-items: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.after-confirmed1 .modal-body p {
	font-size: 18px;
	font-weight: 700;
	color: #005a2d;
	line-height: 0px !important
}
.after-confirmed1 .modal-body span {
	font-size: 21px;
	text-decoration: underline;
	color: #005a2d;
}

.back-btn {
	border-radius: 20px;
	border: 1px solid #FF4B2B;
	background-color: #FF4B2B;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
}

.modal-footer {
	display: flex;
	justify-content: center;
}

.login button {
    border-radius: 25px;
    border: 1px solid #FF4B2B;
    background-color: #FF4B2B;
    color: #FFFFFF;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: bold;
    padding: 6px 36px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}


