body{

    background:#f6f8fb;

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:100vh;

}

.login-box{

    width:480px;

    background:#fff;

    border-radius:22px;

    padding:50px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    text-align:center;

}

.logo{

    width:120px;

    margin:auto auto 25px;

}

.logo img{

    width:100%;

    display:block;

}

.login-box h1{

    margin:0;

    color:#1b2234;

    font-size:34px;

    font-weight:900;

}

.subtitle{

    margin-top:12px;

    color:#666;

    font-size:16px;

    line-height:2;

}

.form-group{

    margin-top:25px;

    text-align:right;

}

.form-group label{

    display:block;

    margin-bottom:10px;

    font-weight:700;

    color:#222;

}

.form-group input{

    width:100%;

    height:58px;

    border:1px solid #dfe5ec;

    border-radius:12px;

    padding:0 18px;

    font-family:inherit;

    font-size:16px;

    box-sizing:border-box;

    outline:none;

    transition:.2s;

}

.form-group input:focus{

    border-color:#27ae60;

    box-shadow:0 0 0 4px rgba(39,174,96,.08);

}

.login-btn{

    width:100%;

    height:58px;

    margin-top:30px;

    border:none;

    border-radius:12px;

    background:#27ae60;

    color:#fff;

    font-family:inherit;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.2s;

}

.login-btn:hover{

    background:#219150;

}

.login-links{

    margin-top:28px;

    display:flex;

    justify-content:space-between;

}

.login-links a{

    color:#666;

    text-decoration:none;

    font-size:15px;

}

.login-links a:hover{

    color:#27ae60;

}

@media(max-width:768px){

.login-box{

    width:90%;

    padding:35px 25px;

}

.login-box h1{

    font-size:28px;

}

}