*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

body{

    background:#1e3c72;
    background:linear-gradient(135deg,#1e3c72,#2a5298);

    display:flex;
    justify-content:center;
    align-items:center;

    height:100vh;
}

.login-container{

    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;

}

.login-box{

    background:#fff;
    width:380px;

    padding:40px;

    border-radius:10px;

    box-shadow:0 10px 25px rgba(0,0,0,.3);

}

.login-box h2{

    text-align:center;

    margin-bottom:30px;

    color:#1e3c72;

}

.input-group{

    position:relative;

    margin-bottom:20px;

}

.input-group i:first-child{

    position:absolute;

    left:15px;

    top:15px;

    color:#777;

}

.input-group input{

    width:100%;

    padding:12px 40px;

    border:1px solid #ccc;

    border-radius:5px;

    font-size:15px;

}

#togglePassword{

    position:absolute;

    right:15px;

    top:15px;

    cursor:pointer;

    color:#666;

}

button{

    width:100%;

    background:#1e3c72;

    color:white;

    border:none;

    padding:14px;

    border-radius:5px;

    cursor:pointer;

    font-size:16px;

    transition:.3s;

}

button:hover{

    background:#15305c;

}