/* Main journey page styles */

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.mainbody {
    min-height: 100vh;
    background-color: #f5f7fa;
    background-image: url('/images/bg/background.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
}

/* Navigation */
.site-header {
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.navigation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
}
.navigation .logo {
    height: 32px;
}

/* Two-column layout (empleyado) */
.login-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 56px);
}
.left-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    max-width: 55%;
}
.right-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    max-width: 45%;
}
.login-form {
    width: 100%;
    max-width: 400px;
}

/* Headings */
.heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 4px;
}
.subheading {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--neutral3);
    margin-bottom: 24px;
}

/* Assistance section (empleyado right column) */
.assistance-section {
    max-width: 340px;
}
.assistance-section .heading {
    font-size: 20px;
}
.assistance-actions {
    display: flex;
    gap: 12px;
}

/* Spacers */
.spacer4 { height: 4px; }
.spacer8 { height: 8px; }
.spacer12 { height: 12px; }
.spacer16 { height: 16px; }
.spacer20 { height: 20px; }
.spacer24 { height: 24px; }

/* Social icons row (compact) */
.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* Tenant banner */
.tenant-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--light3);
}
.tenant-banner-info {
    display: flex;
    flex-direction: column;
}
.tenant-banner-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--neutral5);
}
.tenant-banner-platform {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: var(--neutral3);
}

/* Loading overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 9998;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}
.loading-overlay.active {
    display: flex;
}
.loading-overlay img {
    width: 120px;
}

/* User identity display */
.user-identity {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--primary-light);
    border-radius: 8px;
    margin-bottom: 16px;
}
.user-identity-email {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--neutral5);
    flex: 1;
}
.user-identity-change {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}
.user-identity-change:hover {
    text-decoration: underline;
}

/* Countdown timer */
.countdown {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: var(--neutral3);
    text-align: center;
    margin-top: 16px;
}
.countdown b {
    color: var(--primary);
}

/* Access denied */
.access-denied-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #FDECEA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.access-denied-message {
    background: #FDECEA;
    border-radius: 8px;
    padding: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--danger);
    text-align: center;
    margin-bottom: 16px;
}

/* Validation panel (dev only) */
.validation-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 10px 24px;
    font-family: monospace;
    font-size: 12px;
    z-index: 9999;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.validation-panel b {
    color: #4fc3f7;
}
.validation-panel .val-locked {
    color: #ff8a65;
}
