@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?65qbhh');
  src:  url('../fonts/icomoon.eot?65qbhh#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?65qbhh') format('truetype'),
    url('../fonts/icomoon.woff?65qbhh') format('woff'),
    url('../fonts/icomoon.svg?65qbhh#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.icon-upload4:before {
  content: "\e907";
}
.icon-upload-to-cloud:before {
  content: "\e904";
}
.icon-calendar1:before {
  content: "\e908";
}
.icon-upload:before {
  content: "\e903";
}
.icon-download1:before {
  content: "\e902";
}
.icon-file_upload:before {
  content: "\e906";
}
.icon-file_download:before {
  content: "\e900";
}
.icon-upload1:before {
  content: "\e905";
}
.icon-download:before {
  content: "\e901";
}
.icon-calendar:before {
  content: "\e953";
}
.icon-key:before {
  content: "\e98d";
}
.icon-cloud-download:before {
  content: "\e9c2";
}
.icon-cloud-upload:before {
  content: "\e9c3";
}
.icon-download2:before {
  content: "\e9c5";
}
.icon-upload2:before {
  content: "\e9c6";
}
.icon-download3:before {
  content: "\e9c7";
}
.icon-upload3:before {
  content: "\e9c8";
}
.icon-arrow-up:before {
  content: "\ea32";
}
.icon-arrow-up2:before {
  content: "\ea3a";
}
.icon-arrow-down2:before {
  content: "\ea3e";
}


* {
	box-sizing: border-box;
}

body {
	background: #f6f5f7;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-family: 'Poppins', sans-serif;
	height: 100vh;
	margin: 0;
}

h1 {
	font-weight: 600;
    margin: 0px 0px 10px 0px;
    color: #7a7a7a;
    font-size: 24px;
}

.overlay h1{
    color:#fff;
}

h2 {
	text-align: center;
}

p {
	font-size: 14px;
	font-weight: 100;
	line-height: normal;
	letter-spacing: 0.5px;
	margin: 15px 0;
}

span {
	font-size: 12px;
}

a {
	color: #333;
	font-size: 14px;
	text-decoration: none;
	margin: 15px 0;
}

button,
.uploaddata{
    font-family: 'Poppins', sans-serif;
	border-radius: 30px;
	border: 1px solid #00345e;
	background-color: #00345e;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: 500;
	padding: 9px 35px;
	margin: 8px 0;
	letter-spacing: 1px;
	transition: transform 80ms ease-in;
	cursor:pointer;
}

button:active,
button:hover{
	transform: scale(0.95);
	background-color:#4a6f8d;
}

button:focus {
	outline: none;
}

button.ghost {
	background-color: transparent;
	border-color: #FFFFFF;
}

.left-content {
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px;
	height: 100%;
	text-align: center;
}

.emlogo{
    margin-bottom:15px;
}

.forgotlink{
    margin: 8px 0;
}
.forgotlink a{
    color: #6e93b1;
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
}

input,
select{
	background-color: #eee;
	border: none;
	padding: 9px 15px;
	margin: 8px 0;
	width: 100%;
	border-radius: 30px;
	outline: none;
	font-family: 'Poppins', sans-serif;
}
select.reg-select {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), radial-gradient(#ddd0 70%, transparent 72%);
    background-position: calc(100% - 20px) calc(1em + 4px), calc(100% - 15px) calc(1em + 4px), calc(100% - 0.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1.5em 1.5em;
    background-repeat: no-repeat;
    -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color:#757575;
}

.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: 500px;
}

.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: #4c718e;
	background: -webkit-linear-gradient(to right, #00345e, #4c718e);
	background: linear-gradient(to right, #00345e, #4c718e);
	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);
}

.welcome-note{
    color:#fff;
    font-weight:400;
    font-size:16px;
}

.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;
}

@media only screen and (max-width: 600px) {
    .left-content,
    .overlay-panel{
        padding: 0 20px;
    }
}


/*****How it Works****/
.sign-in-container.how-work-section{
    width:100%
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.row{
    margin-bottom:15px;
    display:flex;
}
.col-12{
    width:100%;
    padding-right: 10px;
    padding-left: 10px;
}
.col-6{
    width:50%;
    padding-right: 10px;
    padding-left: 10px;
}

.how-work-forms{
    width:100%;
    margin-top: 25px;
}
.how-work-section .left-content{
    text-align:left;
}
button span,
label span{
	font-size: 14px;
	padding-left:8px;
	position:relative;
	top:1px;
}
.btn-cancel{
    background-color: #FFFFFF;
    color: #00345e;
    margin-right:15px;
}
.btn-cancel:hover{
    color: #FFFFFF;
}
.uploaddata{
    margin:8px 0;
    display:inline-block;
}
.link{
    margin: 5px 0;
}
.link a{
    color: #FF9800;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
    font-weight: 500;
    word-wrap: break-word;
}
.link a:hover{
    color:#00345e;
}
.container.how-work-container{
    width:668px;
}
.trial,
.subscribe{
    font-size: 18px;
    font-weight: 400;
    color: #00345e;
    min-height: 100px;
}
.subscribe{
    font-weight: 500;
}
.px-80{padding: 0 80px;}
.trial{
    color: #FF9800;
}
.text-center{
    text-align:center;
}

/**Subscribe style**/
.container.subscribe-container{
    background-color: transparent;
    box-shadow: none;
    width: 1200px;
}
.container.subscribe-container .left-content{
    background-color: transparent;
}
.subscribe-content{
    background-color: #fff;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    border-radius: 10px;
    min-height: 320px;
    padding:30px;
    text-align:center;
}

.subscribe-content h3{
    margin-top:0;
    font-size: 24px;
    font-weight: 500;
    display: flex;
    color: #00345e;
    align-items: center;
    justify-content: center;
}
.subscribe-content h3 span{
    font-size: 26px;
    margin-right: 10px;
}
@media only screen and (max-width: 768px) {
.col-12{
    width:100%;
    padding-right: 10px;
    padding-left: 10px;
}
.px-80 {
    padding: 0;
}
.row {
    flex-direction: column;
}
.subscribe-content {
    margin-bottom: 25px;
}
.container.subscribe-container{
    overflow: visible;
}
.container.subscribe-container .left-content{
    height: auto;
}
}
