<style>

body{
    background:#f4f6fa;
    font-family:Arial,Helvetica,sans-serif;
}

.login-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
}

.login-box{
    width:420px;
    background:#ffffff;
    border-radius:10px;
    box-shadow:0 0 30px rgba(0,0,0,.08);
    padding:35px;
}

.logo{
    text-align:center;
    margin-bottom:25px;
}

.logo h1{
    margin:0;
    font-size:30px;
    font-weight:700;
}

.logo p{
    color:#6c757d;
    margin-top:5px;
}

.form-group{
    margin-bottom:15px;
}

.form-control{
    width:100%;
    padding:10px;
}

.btn-login{
    width:100%;
    padding:12px;
}

.forgot{
    text-align:right;
    margin-top:10px;
}

.forgot a{
    text-decoration:none;
}

.footer-text{
    text-align:center;
    margin-top:20px;
    color:#777;
}

</style>