/* Desktop layout rules for login.php */
html,
body {
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    align-items: flex-start;
    padding: clamp(12px, 2vw, 24px);
}

.auth-container {
    width: min(1200px, 100%);
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    max-height: none;
    height: auto;
}

.auth-left,
.auth-right {
    min-width: 0;
    min-height: 0;
    overflow: visible;
}

.auth-right {
    padding: clamp(38px, 4vw, 60px) clamp(34px, 4vw, 52px);
    justify-content: flex-start;
}

.auth-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stepper-bar {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.student-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-right > *,
.activation-card,
.student-summary-item,
.step-chip {
    min-width: 0;
    overflow-wrap: anywhere;
}
