*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{

    background:linear-gradient(135deg,#0d6efd,#0dcaf0);

    min-height:100vh;

}

.outer{

    width:100%;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:20px;

}

.login-wrapper{

    width:100%;
    max-width:420px;

}

.form.login{

    background:#fff;

    border-radius:18px;

    padding:40px;

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

}

.logo{

    width:80px;
    height:80px;

    margin:auto;

    border-radius:50%;

    background:#0d6efd;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;

    font-size:36px;

    margin-bottom:20px;

}

.form.login h1{

    text-align:center;

    color:#0d6efd;

    margin-bottom:5px;

}

.form.login p{

    text-align:center;

    color:#777;

    margin-bottom:30px;

}

.form-group{

    margin-bottom:18px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#555;

}

.form-group input{

    width:100%;

    height:48px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:0 15px;

    font-size:15px;

    transition:.25s;

}

.form-group input:focus{

    border-color:#0d6efd;

    outline:none;

    box-shadow:0 0 0 4px rgba(13,110,253,.15);

}

.submit{

    width:100%;

    height:50px;

    border:none;

    border-radius:10px;

    background:#0d6efd;

    color:#fff;

    font-size:16px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

.submit:hover{

    background:#0b5ed7;

    transform:translateY(-2px);

}