.login {
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.register {
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    min-height: 845px;
}

form {
    margin-bottom: 20px;
}

.login-images {
    position: absolute;
    left: 0;
    top: -200px;
    height: 100vh;
    width: 100%;

    img {
        position: absolute;
    }

    img:nth-child(1) {
        left: 0;
        top: 27%;
    }
    img:nth-child(2) {
        left: 0;
        top: 47%;
    }
    img:nth-child(3) {
        left: 0;
        top: 0;
    }
    img:nth-child(4) {
        right: 0;
        top: 50%;
    }
    img:nth-child(5) {
        right: 4%;
        top: 0;
    }
    img:nth-child(6) {
        right: 0;
        top: 8%;
    }
    img:nth-child(7) {
        right: 0;
        top: 27%;
    }
}

.effect {
    position: absolute;
    top: 0;
    z-index: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    padding: 20px;
    flex-direction: column;
    padding-top: 20%;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.67);

    p {
        max-width: 256px;
        color: var(--white);

        &.long {
            max-width: 400px;
            text-align: left;
        }
    }
}

.form-card {
    position: relative;
    z-index: 1;
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 16px 16px 0 0;
    background: var(--white);

    form {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
    }
}
