.login-page {
    height: 100vh;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    background: url(../../images/fundo.jpg);
    background-size: cover;
}

.form {
    position: relative;
    border-radius: 5px;
    width: 600px;
    background-color: #ffffff;
    padding: 40px;
}

.form img {
    text-align: center;
    width: 310px;
    margin: 0px auto;
}

.form input {
    outline: 0;
    background: #f2f2f2;
    border: 1px solid #c7bdbd;
    border-radius: 4px;
    width: 100%;
    margin: 15px 0;
    padding: 15px;
    font-size: 14px;
}

.form input:focus {
    box-shadow: 0 0 5px 0 rgba(106, 98, 210);
}

span {
    color: red;
    margin: 10px 0;
    font-size: 14px;
}

.form button {
    outline: 0;
    background: #f53d45;
    border: 1px solid #f53d45;
    color: #fff;
    width: 100%;
    margin-top: 10px;
    border-radius: 3px;
    padding: 15px;
    font-size: 15px;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.form button:hover,
.form button:active,
.form button:focus {
    background: #000;
    border: 1px solid #000;
    color: #fff;
}

.message{
    margin: 15px 0;
    text-align: center;

}
.form .message a {
    font-size: 16px;
    color: f53d45;
    text-decoration: none;
}