.authentication {
    display: flex;
    width: 100%;
    gap: 2rem;
    box-sizing: border-box;
    justify-content: space-between;
    overflow-x: hidden;
}

.authentication-section {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    min-width: 0;
    box-sizing: border-box;
}

.authentication-section-logo {
    max-width: 210px;
    max-height: 100px;
    margin-right: auto;
}

.authentication-section-copyright {
    color: #6D6D6D;
    margin-right: auto;
}

.authentication-image {
    display: flex;
    flex-grow: 1;
    min-width: 0;
    box-sizing: border-box;
}

.authentication-image img {
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: auto;
}

/* Mobile - 767px and below */
@media (max-width: 767px) {
    .authentication {
        flex-direction: column;
    }

    .authentication-section {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem 1rem;
        min-height: 100vh;
    }

    .authentication-section-logo {
        max-width: 160px;
        margin: 0 auto 2rem auto;
        align-self: center;
    }

    .authentication-section-copyright {
        margin: 0 auto;
        text-align: center;
        padding-top: 1rem;
    }

    .authentication-image {
        display: none;
    }
}

/* Mobile Small - 479px and below */
@media (max-width: 479px) {
    .authentication-section {
        padding: 1rem 0.8rem;
    }

    .authentication-section-logo {
        max-width: 140px;
        margin-bottom: 1.5rem;
    }
}

/* Extra Small Mobile - 320px and below */
@media (max-width: 320px) {
    .authentication-section {
        padding: 0.8rem 0.5rem;
    }

    .authentication-section-logo {
        max-width: 120px;
    }
}