html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.login-header {
    display: flex;
    padding: 20px 0 0 30px;
}

.login-footer {
    display: flex;
    font-size: 14px;
    gap: 70px;
    justify-content: space-between;
    margin: 0 20px 0 20px;
}

    .login-footer a {
        text-decoration: none;
        color: white;
    }

.login-container {
    flex-direction: column;
    gap: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 10%, #46b0a3), url('/images/login/background-login.png') no-repeat center center;
    background-size: cover;
}

.login-area {
    padding: 75px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: hsla(0, 0%, 100%, .2);
    backdrop-filter: blur(10px);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .login-area {
        margin: 20px;
        padding: 30px;
    }
}

.login-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.validation-login {
    font-size: 14px;
    max-width: 393px;
}
