/* Additional styles for cleaner interface */
.quick-code-entry {
    display: none;
    /* Hide the demo code section */
}

.example-hint {
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 5px;
}

.example-hint i {
    color: #6C63FF;
    font-size: 12px;
}

.form-text {
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 5px;
}

.input-group-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.btn-action {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-action:disabled {
    opacity: 0.6;
    transform: none;
}

.status-indicator {
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 20px;
    background: #f8f9fa;
    color: #6c757d;
}

.status-valid {
    background: #d4edda;
    color: #155724;
}

.election-code-input.valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.election-code-input.invalid {
    border-color: #dc3545;
}

.info-panel {
    background: #f8f9fa;
    border-left: 4px solid #6C63FF;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-panel i {
    color: #6C63FF;
    font-size: 20px;
}

.info-panel p {
    margin: 0;
    font-size: 14px;
    color: #495057;
}

.forgot-link {
    color: #6C63FF;
    text-decoration: none;
    font-size: 14px;
}

.forgot-link:hover {
    text-decoration: underline;
}

.toggle-slider.join-public {
    transform: translateX(100%);
}

.description-icon i {
    font-size: 48px;
    color: #6C63FF;
    background: rgba(108, 99, 255, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6C63FF;
}

.feature-text {
    flex: 1;
}

.feature-text small {
    display: block;
    color: #6c757d;
    font-size: 12px;
}