body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f1f1f1;
    font-family: 'Montserrat', sans-serif;
}

.login-container {
    width: 100%;
    max-width: 350px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}

.login-container h4{
    margin-top: -22px
}
.login-container h5{
    color: royalblue;
    font-weight: 600;
}

.login-container button{
    margin-bottom: -15px;
}

.login-container i{
    color: royalblue;
}
.login-container spam i{
    color: orangered;
    font-size: 2.5em;
}

.links{
    display: flex;
    justify-content:space-between;
}

.links a {
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.5s;
}
.links a:hover {
    font-size: 0.85rem;
    text-decoration: underline;
}
