@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,500,700|Open+Sans:300,700|Varela+Round');
body, html {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}
body {
	font-family: 'Varela Round', sans-serif;
	background: #eaeaea;
	padding-bottom: 50px;
}

a{
	text-decoration: none;
	color: inherit;
}

.button {
	padding: 15px 25px 15px 25px;
	color: #fff;
	border-radius: 5px;
	display: inline-block;
	margin: 10px 10px 10px 10px;
	cursor: pointer;
}
.b-warning {
	background: #eaba4d;
}

.loginModal{
  width: 350px;
  height: 350px;
  background-color: #fff;
	background-image: url(../cdn/edi-integrations-header.jpg);
  margin: 10% auto auto auto;
	background-size: auto 140%;
	background-position: 0px 0px;
  border-radius: 15px;
  box-shadow: 0px 0px 20px 0px #d2d2d2;
	transition: 0.6s all ease;
	animation: loginModal 50s linear;
	animation-iteration-count: infinite;
	opacity: 1;
}

@keyframes loginModal{
	0%{
		background-position: 0px 0px;
	}
	50%{
		background-position: 300px -80px;
	}
	100%{
		background-position: 0px 0px;
	}
}

.loginModal .left{
  width: 350px;
  height: 100%;
  background: #fff;
  border-radius: 10px;
	float: left;
	position: relative;
}

.welcome{
	color: #fff;
	font-weight: bold;
	font-size: 70px;
	text-align: center;
	margin: 170px 0px 0px 0px;
}

.welcome-left{
	color: #000;
	margin: -5px 0px 0px 0px;
	font-size: 35px;
	font-weight: bold;
	text-align: center;
}

.sub_welcome{
	font-size: 20px;
	text-align: center;
	opacity: 0;
	transition: 0.5s all ease;
	color: #fff;
}

.or{
	font-size: 16px;
	text-align: center;
	opacity: 0;
	transition: 1s all ease;
	color: #fff;
	font-weight: bold;
	margin: 80px auto auto auto;
}

.sub-welcome-left{
	font-size: 17px;
	color: #000;
	margin: 80px 0px 0px 0px;
	text-align: center;
}

.sub-success-left{
	font-size: 17px;
	color: #000;
	margin: 40px auto auto auto;
	text-align: center;
	width: 80%;
}

.letter{
	opacity: 0;
	font-size: 20px;
}

.fadeIn{
	animation: 0.5s fadeIn forwards;
	opacity: 0;
	text-shadow: 0px 0px 10px rgba(255, 255, 255, 1);
	transition: 0.5s all ease;
}

@keyframes fadeIn{
	from{
		opacity: 0;
		font-size: 20px;
		text-shadow: 0px 0px 10px rgba(255, 255, 255, 1);
	}
	to{
		opacity: 1;
		font-size: 70px;
		text-shadow: 0px 0px 10px rgba(255,255,255,0);
	}
}

.footer{
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 10px;
  font-size: 12px;
  color: #736767;
}

form{
	width: 90%;
	margin: 50px auto auto auto;
}

.label{
	font-size: 16px;
	font-weight: bold;
}

input[type="text"], input[type="password"], input[type="email"]{
	width: calc(100% - 20px);
	height: 30px;
	margin: 5px 0px 20px 0px;
	padding: 5px 10px 5px 10px;
	background: #ececec;
	border: none;
	outline: none;
}

.register{
	width: 40%;
	height: 45px;
	line-height: 45px;
	font-size: 16px;
	color: #5b9f84;
	background: #fff;
	text-align: center;
	border-radius: 10px;
	cursor: pointer;
	margin: 20px auto auto auto;
	transition: 1s all ease;
	opacity: 0;
}

.submit{
	width: 100%;
	height: 45px;
	line-height: 45px;
	font-size: 16px;
	color: #fff;
	background: #545454;
	text-align: center;
	border-radius: 10px;
	cursor: pointer;
	margin: 20px auto auto auto;
	transition: 0.2s all ease;
}

.error{
	width: auto;
  height: auto;
	color: #fff;
	text-align: center;
	background: #f93625;
	margin: 10px auto auto auto;
	border-radius: 5px;
  animation: errorParse 0.5s forwards;
  position: absolute;
  font-size: 13px;
  padding: 3px 7px 3px 7px;
}

.triangle{
  position: absolute;
  top: -15px;
  left: 10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid transparent;
  border-bottom: 10px solid #f93625;
}

.warning{
  width: auto;
  height: auto;
	color: #fff;
	text-align: center;
	background: #f97f25;
	margin: 10px auto auto auto;
	border-radius: 5px;
  animation: errorParse 0.5s forwards;
  position: absolute;
  font-size: 13px;
  padding: 3px 7px 3px 7px;
}

.warning .triangle{
  border-bottom: 10px solid #f97f25;
}

.success{
  width: auto;
  height: auto;
	color: #fff;
	text-align: center;
	background: #65c769;
	margin: 10px auto auto auto;
	border-radius: 5px;
  animation: errorParse 0.5s forwards;
  position: absolute;
  font-size: 13px;
  padding: 3px 7px 3px 7px;
}

.success .triangle{
  border-bottom: 10px solid #65c769;
}


@keyframes errorParse{
  from{
    margin: 20px auto auto auto;
    opacity: 0;
  }
  to{
    margin: 10px auto auto auto;
    opacity: 1;
  }
}

/* globalMessage */

.globalMessage{
	width: calc(100% - 50px);
	padding: 15px 25px 15px 25px;
	background: #de7f48;
	color: #fff;
	font-size: 18px;
	margin: -100px 0px 0px 0px;
	animation: fromTop 0.5s forwards;
	animation-delay: 0.5s;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
}

.globalMessage .title{
	font-weight: 700;
}


@keyframes fromTop{
	from{
		margin: -100px 0px 0px 0px;
	}
	to{
		margin: 0px 0px 0px 0px;
	}
}

.register-success-check{
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	background: #6cb96c;
	line-height: 60px;
	border-radius: 100%;
	font-size: 23px;
	margin: 120px auto auto auto;
}


@media screen and (max-width: 850px){
	.welcome-left, .sub-welcome-left{
		display: none;
	}
	.loginModal .left{
		float: none;
		display: inline-block;
		width: 100%;
		padding-bottom: 50px;
		margin: -5px 0px 0px 0px;
	}
	.loginModal .right{
		float: none;
		display: inline-block;
		width: 100%;
		height: 200px;
		border-top-left-radius: 10px;
		border-bottom-right-radius: 0px;
	}
	.welcome{
		margin: 50px auto auto auto;
	}
	.or{
		margin: 20px auto auto auto;
	}
}
