.login-hero {
    min-height: calc(100vh - var(--header-height));

    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding: 50px 24px 32px;
}

.login-container {

    width: 100%;
    max-width: 480px;

    display: flex;
    flex-direction: column;

}

.login-step {
    width: 100%;
    max-width: 480px;

    position: relative;

    display: flex;
    flex-direction: column;;

    background: var(--background);

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-header {

    margin-bottom: 50px;

}

.login-legal {

    margin: 20px 0 16px;

    text-align: center;

    font-size: 13px;
    line-height: 1.5;

    color: var(--text-50);

}

.login-legal a {

    color: var(--accent);

    text-decoration: none;
    font-weight: 500;

}

.forgot-password {

    display: flex;

    justify-content: flex-end;

    margin: 7px 0 16px;

    font-size: 12px;
    line-height: 1.5;

    color: var(--text-50);

}

.login-subtitle {

    margin-top: 12px;

    display: flex;

    justify-content: flex-start;

    font-size: 16px;
    line-height: 1.5;

    color: var(--text-70);

}