/* Beyazoglu auth (login / register) — compiled CSS'te olmayan split layout utility'leri */
.bg-auth-page {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
}

.bg-auth-page__brand,
.bg-auth-page__form {
    width: 100%;
}

.bg-auth-page__brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    padding: 3rem 2rem;
}

.bg-auth-page__form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.bg-auth-page__form-inner {
    width: 100%;
    max-width: 28rem;
}

.bg-auth-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 639px) {
    .bg-auth-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    .bg-auth-page {
        flex-direction: row;
    }

    .bg-auth-page__brand,
    .bg-auth-page__form {
        width: 50%;
        flex: 1 1 50%;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .bg-auth-page__brand {
        padding: 4rem 3rem;
    }

    .bg-auth-page__form {
        padding: 4rem 3rem;
    }
}
