body{
color:#ffffff;
padding:25px;
margin:0px;
display:flex;
justify-content:center;
align-items:center;
position:relative;
}
	
body:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}

.loginbox{
text-align:center;
}
	
.loginbox h3{
font-size:2em;
}
	
.login_logo{
max-width:175px;
width: 100%;
margin-bottom:25px;
}
	
.login_image img{
width:200px;
height:auto;
}

input[type="password"]{
padding: 12px !important;
border-radius: 8px !important;
border: 1px solid #ddd !important;
font-size: 18px !important;
box-sizing: border-box !important;
background: #fafafa !important;
transition: all 0.3s ease !important;
}
	
.loginbox button{
color:#ffffff;
background-color: rgba(0, 0, 0, 0.4);
height: 47px;
margin: 0px 0px 0px 10px;
border: 0;
width: 47px;
border-radius: 100%;
transition:0.5s all;
}
	
.loginbox button:hover{
background-color:#ffffff;
color: rgba(0, 0, 0, 0.6);
}
	
.logo_container{
position:absolute;
margin:50px 0;
left:0px;
right:0px;
bottom:0px;
text-align:center;
width:100%
}
	
.flexy{
display:flex;
justify-content:center;
align-items:center;
margin-right:-23px !important;
}
	
.error_message{
display:inline-block;
width:auto !important;
position:relative;
background-color:#ff0033;
padding:10px 20px;
border-radius:50px;
color:#ffffff;
}
	
.error_message_container{
position:absolute;
top:20px;
width:100%;
text-align:center;
left:0px;
right:0px;
}