

.login-container {
    background: #f2f2f2;
    background-color: rgb(238, 238, 238);
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    padding: 15px;
    padding-top: 50px;
}



.login-warp {
    top: -50px;
    width: 390px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 40px 55px 70px;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
    -moz-box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
    -webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
    -o-box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
    -ms-box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
}

@media(max-width: 576px) {
    .login-warp {
        padding: 40px 15px 70px;
    }
}



.login-input {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 45px;
    background: 0 0;
    padding: 0 5px;
    outline: none;
    border: none;
    caret-color: black;
}

.login-row {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #adadad;
    margin-bottom: 37px;
}

.login_title {
    display: block;
    font-size: 3rem;
    color: #333;
    line-height: 1.2;
    text-align: center;
}

.login_btn {
	box-shadow: 0px 1px 0px 0px #fff6af;
	background:linear-gradient(to bottom, #f7fa3c 5%, #f5e475 100%);
	background-color:#f7fa3c;
	border-radius:6px;
	border:1px solid #ffc56e;
	font-size:1.5rem;
    font-weight:bold;
	cursor:pointer;
	color:#333333;
    line-height: 1.2;
    text-transform: uppercase;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    transition: all 1s;
}

.login_btn:hover {
	background:linear-gradient(to bottom, #f5e475 5%, #f7fa3c 100%);
	background-color:#f5e475;
}

