body {
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.area-login {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    border-radius: 10px;

}

.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F6F7FB;
    width: 355px;
    height: 450px;
    padding: 30px;
    border-radius: 10px;
}

.login form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.login input,
button {
    margin-top: 10px;
    padding: 5px;
    border-radius: 5px;
}

.login img {
    width: 120px;
    height: auto;
}