@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
html, body {
    background: #6665ee;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    /* height: 100%;
    width: 100%;
    overflow-x: hidden; */
}
::selection {
    color: #fff;
    background: #6665ee;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 15px;
}
.container .form {
    background: #fff;
    padding: 30px 35px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 100%;
}
.container .form form .form-control {
    height: 40px;
    font-size: 15px;
}
.container .form form .button {
    background: #6665ee;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.container .form form .button:hover {
    background: #5757d1;
}
.container .form form .link {
    padding: 5px 0;
}
.container .form form .link a {
    color: #6665ee;
    text-decoration: none;
}
.container .form form .link a:hover {
    text-decoration: underline;
}
.container .row .alert {
    font-size: 14px;
}
@media (max-width: 768px) {
    .container .form {
        padding: 20px;
    }
}
@media (max-width: 576px) {
    .container {
        padding: 10px;
    }
    .container .form {
        padding: 15px;
    }
}