#app {
    min-height: 100vh;
}

#app>.py-6 {
    min-height: 100vh;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr min(28rem, 100vw);
    background-image: url('/images/woms-cover.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#app>.py-6>div:first-child {
    display: none;
}

#app>.py-6>div:last-child {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

#app>.py-6>div:last-child form {
    margin: 0;
    width: min(100%, 28rem);
    min-height: min(92vh, 42rem);
    border-radius: 0.75rem;
    background: #ffffff;
    color: #111827;
    box-shadow: -24px 0 48px rgba(17, 24, 39, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateX(-180px);
}

.nova-auth-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.nova-auth-logo {
    width: min(150px, 40vw);
    height: auto;
    display: block;
}

.nova-auth-inner-header-logo-wrap {
    display: flex;
    justify-content: center;
    margin-top: -0.25rem;
    margin-bottom: 1rem;
}

.nova-auth-inner-header-logo {
    width: min(86px, 22vw);
    height: auto;
    display: block;
    opacity: 0.98;
}

#app>.py-6>div:last-child form input,
#app>.py-6>div:last-child form textarea,
#app>.py-6>div:last-child form select {
    color: #111827;
    background: #ffffff;
}

#app>.py-6>div:last-child form label,
#app>.py-6>div:last-child form p,
#app>.py-6>div:last-child form span {
    color: #111827;
}

#app>.py-6>div:last-child form button,
#app>.py-6>div:last-child form button span {
    color: #ffffff;
}

.nova-auth-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    color: #6b7280;
    font-size: 0.75rem;
    line-height: 1rem;
}

.nova-auth-footer a {
    display: inline-flex;
    align-items: center;
}

.nova-auth-footer-brand {
    display: inline-flex;
    align-items: center;
}

.nova-auth-footer-copy,
.nova-auth-footer-text {
    white-space: nowrap;
}

.nova-auth-footer img {
    display: block;
    height: 18px;
    width: auto;
}

@media (max-width: 768px) {
    #app>.py-6 {
        grid-template-columns: 1fr;
        background: #f9fafb;
    }

    #app>.py-6>div:last-child {
        grid-column: 1;
        padding: 0;
    }

    #app>.py-6>div:last-child form {
        width: 100%;
        min-height: 100vh;
        border-radius: 0;
        box-shadow: none;
        transform: none;
    }
}