@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');


body {
    background:#DDE5F4;
    font-family:'Poppins';
}

input {
    width:220px;
}

#loginBox {
    background:#f1f7fe;
    border-radius:30px;
    width:300px;
    margin:auto;
    text-align:center;
    margin-top:50px;

}

#loginLogo {
    background:#3d4785;
    width:120px;
    height:120px;
    border-radius:50%;
    margin:auto;
}

#dot {
    background:white;
    width:35px;
    height:35px;
    border-radius:50%;
}


#loginInner {
    margin:20px;
    padding-top:40px;
}

input[type=button],
input[type=submit] {
    background-color: #3d4785;
    border: none;
    color: #fff;
    padding: 3px 30px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
}

input[type=button]:hover,
input[type=submit]:hover {
    background-color: #62129c;
}
