/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    animation: slideInDown 0.5s ease-out;
}

.alert-error {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.05));
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.alert-success {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.05));
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.alert i {
    font-size: 16px;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Demo Accounts Section */
.demo-accounts {
    background: rgba(166, 124, 82, 0.05);
    border: 1px solid rgba(166, 124, 82, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.demo-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.demo-title::before {
    content: '🔐';
    font-size: 16px;
}

.demo-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-account {
    background: white;
    color: var(--text-color);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(166, 124, 82, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.demo-account:hover {
    background: var(--secondary-color);
    transform: scale(1.02);
}

/* Mobile Responsive for New Elements */
@media (max-width: 768px) {
    .demo-list {
        gap: 6px;
    }
    
    .demo-account {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .alert {
        padding: 12px 15px;
        font-size: 13px;
    }
}
