.login_button{
    font-size: 16px;
    border: 0;
    cursor: pointer;
    display:   inline-block;
    padding:   0.3em 1.2em;
    margin:    0.3em 0.3em 0.3em 0.3em;
    border-radius: 3px;
    box-sizing: border-box;
    text-decoration:none;
    font-weight:500;
    color:#FFFFFF;    
    text-align:    center;
    transition: all 0.2s;
    font-family: poppins;
    border: 1px solid rgb(43, 127, 245);
    background-color:#0e1c2c;
}

.instr{
	margin-bottom: 10px;
}

.login_button:hover{    
   	background-color:  rgb(43, 127, 245);
}


.login-title{
	display:		flex;
	align-items:	center;
	margin-bottom:	50px;
	margin-top:		50px;
}

.center_inner_container{
    display:		flex; 
    flex-direction: column;
    align-items: 	center; 
    width:			50%;  
}

.input {
  font-size: 		14px;
  font-size: 		max(14px, 1em);
  background-color: #fff;
  border: 			2px solid var(--input-border);
  border-radius: 	4px;
  padding: 			5px;
  width: 			100%;
}
.input2{
    margin-top: 	10px
}
.forgot{
    width: 300px;
    margin:10px;    
}

.forgot_link{
	color:		 	rgb(43, 127, 245);
	font-size: 		16px;
	font-style: 	italic; 
	text-decoration: none;	
}

.forgot_message{
    font-weight: 400;
    text-align: right;
    margin-top: 10px;
}

.content_container{
    flex: 			2;
    padding-left: 	20px; 
    padding-right: 	20px; 
    display: 		flex; 
    align-items: 	center;
    min-height:		70%;    
}

.just-validate-error-label{	
  padding-left: 15px;
  font-size: 14px;
  max-width: 300px;
  margin-top:	5px;
  margin-bottom: 5px;
}

.new_password_message{	
	width:				100%;
	margin-top:	 		10px;
	margin-bottom: 		10px;
	text-align: 		center;
}

::-webkit-input-placeholder {
   text-align: center;
}

:-moz-placeholder { /* Firefox 18- */
   text-align: center;  
}

::-moz-placeholder {  /* Firefox 19+ */
   text-align: center;  
}

:-ms-input-placeholder {  
   text-align: center; 
}

.line-L{
	height: 1px;
	width: 200px;
	padding-right: 35px;
}

.line-R{
	height: 1px;
	padding-left: 35px;
	width: 200px;
}

.rem_for_container{
	margin-top: 10px;
	color:	white;	
}

.form_login_button_container{
	margin-top:			20px;
	display:			flex;
	justify-content:	center;
	margin-bottom:		20px;	
}

/*Mobile*/
@media only screen and (max-width: 700px) {


	.login-title{
		margin-bottom:	25px;
		margin-top:		25px;
	}
	
	.line-L{
		width: 100px;
		padding-right: 15px;
	}

	.line-R{
		padding-left: 15px;
		width: 100px;
	}
	
	.form_login_button_container{
		margin-bottom:		50px;
	}
	
}