.auth-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%;
}

.auth-links {
    margin-top: 20px;
    text-align: center;
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* --- License Activation Styles --- */
.activation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.activation-container {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    color: var(--dark-gray);
}

.activation-message {
    margin-top: 15px;
    color: var(--notification-color);
    font-weight: bold;
    min-height: 20px;
}

/* START: NEW DEMO STYLES */
.activation-container h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.activation-container .demo-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--gray);
}

.demo-key-container {
    margin-bottom: 25px;
    text-align: right;
}
[dir="ltr"] .demo-key-container {
    text-align: left;
}

.demo-key-container p {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.demo-key-display {
    background-color: var(--light-gray);
    border: 1px solid #e0e0e0;
    padding: 10px 12px;
    border-radius: 8px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: all;
}

#copy-key-button {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    transition: color 0.2s;
}

#copy-key-button:hover {
    color: var(--primary-color);
}

.activation-container {
    max-width: 450px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.activation-overlay {
    backdrop-filter: blur(5px);
}
/* END: NEW DEMO STYLES */
