/* /login — two equal destinations, with credentials collected only by the
   services that authenticate them. Uses Front's shared surface and spacing
   tokens; cards remain static because their inner CTA is the click target. */
.login-landing {
    padding-top: var(--space-5);
    padding-bottom: var(--space-8);
}

.login-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: var(--space-6);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 30px -24px rgba(4, 45, 74, 0.45);
}

.login-card h1 {
    margin-top: 0;
    margin-bottom: var(--space-3);
}

.login-card__description {
    flex: 1;
    margin-bottom: var(--space-5);
    line-height: 1.65;
}

.login-card .btn {
    align-self: center;
}

.login-reset-link {
    margin: var(--space-5) 0 0;
    text-align: center;
    font-size: 1.15em;
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    .login-cards {
        display: flex;
    }

    .login-cards > [class*="col-"] {
        display: flex;
    }
}

@media screen and (max-width: 767px) {
    .login-cards > [class*="col-"] + [class*="col-"] {
        margin-top: var(--space-4);
    }
}
