.login-container {
    display: flex;
    min-height: 100vh;
}

.login-form-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 1.5rem;
    width: 50%;
    background: transparent;
}

.login-form-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 24rem;
}

.login-title {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
}

.login-subtitle {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
}

.login-subtitle a {
    font-weight: 600;
}

.login-subtitle a:hover {
    color: #4338ca;
}

.login-form-content {
    margin-top: 2.5rem;
}

.login-image-column {
    width: 50%;
    position: relative;
}

.login-image-column img,
.login-image-column video {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.dark {}

/* Mobile responsive - hide image on small screens */
@media (max-width: 1023px) {
    .login-form-column {
        width: 100%;
    }

    .login-image-column {
        display: none;
    }
}
