body{
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    justify-content: center;
    align-items: center;
    align-content: center;
    min-height: 350px;
    height: 100vh;
}

/* login */
.login {
    border: 1px solid lightgray;
    height: 350px;
    max-width: 310px;
    text-align: center;
    padding: 75px 50px 30px 50px;
}

.login form h2 {
    font-size: 13px;}	
.login form h3 {
    margin: 0;
    color: #ff5353;
    font-size: 18px;
    font-weight: bold;}	
.login form img {
	max-height: 52px;
    max-width: 100%;
    margin-bottom: 40px;}
.login form input {
	width: 100%;
	padding: 8px 3px 10px;
	margin-bottom: 10px;
	border: none;
	border-bottom: 1px solid #ccc;
    outline: none;
    font-size: 15px;
}

.login form input:focus {
   border-bottom: 1px solid #585a5d;}

.login form button[type="submit"] {
	margin-top: 15px;
    margin-bottom: 20px;
    width: 100%;
    white-space: nowrap;
    padding: 8px 15px;
    text-transform: capitalize;
    border-radius: 22px;
    border:none;
    background-color: lightslategrey;
    color:azure;
    font-weight: 600;
    font-size: 14px;

}

@media (max-width: 499px) {
.login form {
   max-width: 90%;}
} 	