*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.container{
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, minmax(30%, 1fr) minmax(70%, 1fr));
    grid-gap :0rem;
    padding: 0 0rem;
}

.img{
	display: flex;
	justify-content: flex-end;
	/*align-items: center;*/
}

.login-content{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
    /*box-shadow: 0px -21px 21px #b1b1b1;*/
    /* border: 1px solid black; */
    z-index: 9;	
        position: relative;
}

.login-content .error {

    position: absolute;
    background-color: rgba(233, 30, 99, 0.7);
    width: 100%;
    top: 0px;
    color: white;
    padding: .5rem 0rem;
    z-index: 999;

}

.login-content .error.login-true{
	background-color: rgba(76, 175, 80, 0.7);	
}

.img img{
	width: 100%;
}

form{
	width: 360px;
	margin: 0px auto;
}

.login-content img{
    /*height: 100px;*/
}

.login-content h2{
	margin: 15px 0;
	color: #333;
	text-transform: uppercase;
	font-size: 2.9rem;
}

.login-content .input-div{
	position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    margin: 25px 0;
    padding: 5px 0;
    border-bottom: 2px solid #d9d9d9;
}

.login-content .input-div.one{
	margin-top: 0;
}

.i{
	color: #d9d9d9;
	display: flex;
	justify-content: center;
	align-items: center;
}

.i i{
	transition: .3s;
}

.input-div > div{
    position: relative;
	height: 45px;
}

.input-div > div > h5{
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-size: 18px;
	transition: .3s;
}

.input-div:before, .input-div:after{
	content: '';
	position: absolute;
	bottom: -2px;
	width: 0%;
	height: 2px;
	background-color: #3fa2e4;
	transition: .4s;
}

.input-div:before{
	right: 50%;
}

.input-div:after{
	left: 50%;
}

.input-div.focus:before, .input-div.focus:after{
	width: 50%;
}

.input-div.focus > div > h5{
	top: -8px;
	font-size: 15px;
}

.input-div.focus > .i > i{
	color: #4db7fe;
}

.input-div > div > input{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	background: none;
	padding: 0.5rem 0.7rem;
	font-size: 1.2rem;
	color: #555;
	font-family: 'poppins', sans-serif;
}

.input-div.pass{
	margin-bottom: 4px;
}

a.reset-password{
	display: block;
	text-align: center;
	text-decoration: none;
	color: #999;
	font-size: 0.9rem;
	transition: .3s;
	margin-top: 25px;
}

a.reset-password:hover, .panel-copyright a:hover{
	color: #4db7fe;

}

.panel-copyright {
	margin-top: 60px;
}

.panel-copyright div {
    margin-bottom: 7px;	
}

.panel-copyright, .panel-copyright a {
	color: #999;
	text-decoration: none;
	font-size: 12px;
}



.btn{
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 25px;
	outline: none;
	border: none;
	background-image: linear-gradient(to right, #4db7fe, #3fa2e4, #257fbb);
	background-size: 200%;
	font-size: 1.2rem;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	margin: 1rem 0;
	cursor: pointer;
	transition: .5s;
}
.btn:hover{
	background-position: right;
}

.logo {
  margin: 25px auto;
}
.logo div {
  border-radius: 100%;
  transform: rotate(-45deg);
  width: 60px;
  height: 60px;
  border-radius: 50% 50% 50% 0;
  background: #4db7fe;      
  margin: 0px auto;
}
.logo div:before {
  content: "";
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  background: #fff;
  position: absolute;
  border-radius: 50%;
  top: 50%;      
}

#show-password {
    position: absolute;
    right: 10px;
    font-size: 35px;
    top: 7px;
    color: #a2a2a2;
}

#pswd_info {
	/*position: absolute;*/
	/* bottom: 10px; */
	/*margin-top: 150px;*/
	/*background-color: white;
	border: 2px solid #d9d9d9;*/
	/*width: 90%;*/
	text-align: left;
}

#pswd_info ul, 
#pswd_info li {
  margin:0;
  padding:0;
  list-style-type:none;
}

#pswd_info ul li{
        padding-left: 25px;
}

#pswd_info h4 {
    margin:0 0 10px 0;
    padding:0;
    font-weight:normal;
    font-size: 16px;
}

#pswd_info::before {
    content: "\25B2";
    position:absolute;
    top:-12px;
    left:45%;
    font-size:14px;
    line-height:14px;
    color:#ddd;
    text-shadow:none;
}

.invalid {
    background:url(../img/invalid.png) no-repeat 0 50%;
    padding-left:22px;
    line-height:24px;
    color:rgba(236, 63, 65, 0.7);
}
.valid {
    background:url(../img/valid.png) no-repeat 0 50%;
    padding-left:22px;
    line-height:24px;
    color:rgba(58, 125, 52, 0.7);;
}

@media screen and (max-width: 1050px){
	.container{
		grid-gap: 5rem;
	}
}

@media screen and (max-width: 1000px){
	form{
		width: 290px;
	}

	.login-content h2{
        font-size: 2.4rem;
        margin: 8px 0;
	}

	.img img{
		width: 400px;
	}
}

@media screen and (max-width: 900px){
	.container{
		grid-template-columns: 1fr;
	}

	.img{
		display: none;
	}

	.wave{
		display: none;
	}

	.login-content{
		justify-content: center;
	}
}