/*
 * CUSTOM CSS OVERRIDES
 *
 * This file is for customizing the appearance of your wiki.
 * Add your CSS rules below to override the default styles.
 *
 * Example - Change primary colors:
 */

/*
:root {
    --primary-color: #ff6600 !important;
    --primary-hover: #ff8833 !important;
}
*/

/* Your custom styles below */

/* Modern, clean login dialog */
.login-dialog {
    background: var(--panel-bg, #fff);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 2.5rem 2rem;
    border: 1px solid #e0e0e0;
    animation: fadeIn 0.7s;
}

.login-title {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
}

.login-form .form-group label {
    font-weight: 600;
    color: #4a5568;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    transition: border 0.2s;
}

.login-form input:focus {
    border-color: #3182ce;
    outline: none;
}

.login-button {
    background: linear-gradient(90deg, #3182ce 0%, #63b3ed 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 1rem;
}

.login-button:hover {
    background: linear-gradient(90deg, #2563eb 0%, #4299e1 100%);
}

.error-message {
    background: #fed7d7;
    color: #c53030;
    border-radius: 6px;
    padding: 0.7rem 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    display: none;
    text-align: center;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}